Skip to content

Upgrade 0.28 (#78) #547

Upgrade 0.28 (#78)

Upgrade 0.28 (#78) #547

Workflow file for this run

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