Browse Source

Set up Node.js before running lint job in workflow

pull/498/head
Paul Robert Lloyd 3 years ago
parent
commit
d7df118b95
  1. 10
      .github/workflows/staging_pipeline.yml

10
.github/workflows/staging_pipeline.yml

@ -82,6 +82,16 @@ jobs:
with: with:
bundler-cache: true bundler-cache: true
- name: Set up Node.js
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 16
- name: Install packages and symlink local dependencies
run: |
yarn install --immutable --immutable-cache --check-cache
- name: Lint - name: Lint
run: | run: |
bundle exec rake lint bundle exec rake lint

Loading…
Cancel
Save