diff --git a/.github/workflows/production_pipeline.yml b/.github/workflows/production_pipeline.yml index 76a85eca8..d58cf74ae 100644 --- a/.github/workflows/production_pipeline.yml +++ b/.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