Browse Source

Make linting consistent in staging and prod pipelines (#2020)

pull/2025/head
SamSeed-Softwire 1 year ago committed by GitHub
parent
commit
60c97799f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      .github/workflows/production_pipeline.yml

14
.github/workflows/production_pipeline.yml

@ -167,9 +167,19 @@ jobs:
with: with:
bundler-cache: true bundler-cache: true
- name: Rubocop - name: Set up Node.js
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18
- name: Install packages and symlink local dependencies
run: |
yarn install --immutable --immutable-cache --check-cache
- name: Lint
run: | run: |
bundle exec rubocop bundle exec rake lint
audit: audit:
name: Audit dependencies name: Audit dependencies

Loading…
Cancel
Save