New Crowdin updates #577
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[CI] Lint" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
RUBY_VERSION: 3.1.1 | |
NODE_VERSION: 18.17.1 | |
jobs: | |
lint-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Get npm cache directory path | |
id: npm-cache-dir-path | |
run: echo "::set-output name=dir::$(npm get cache)-vocdoni" | |
- uses: actions/[email protected] | |
id: npm-cache | |
with: | |
path: ${{ steps.npm-cache-dir-path.outputs.dir }} | |
key: npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
npm- | |
- run: npm ci | |
- run: npm run lint | |
name: Lint JS files | |
# - run: npm run stylelint | |
# name: Lint SCSS files | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.RUBY_VERSION }} | |
bundler-cache: true | |
- run: bundle exec rubocop -P | |
name: Lint Ruby files | |
- run: bundle exec erblint app/**/*.erb | |
name: Lint ERB files |