Browse Source

Make linting consistent in staging and prod pipelines

pull/2020/head
Sam Seed 3 years ago
parent
commit
0680794be2
  1. 14
      .github/workflows/production_pipeline.yml

14
.github/workflows/production_pipeline.yml

@ -167,9 +167,19 @@ jobs:
with:
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: |
bundle exec rubocop
bundle exec rake lint
audit:
name: Audit dependencies

Loading…
Cancel
Save