Skip to content

Commit

Permalink
Updated ESLint workflow to use @nodejs 12.x
Browse files Browse the repository at this point in the history
The `node-version` option was previously set to `lts` (for the latest long-term support version of node). This value was not supported by the setup-node action, so it broke the build.
  • Loading branch information
ZelnickB committed Aug 5, 2020
1 parent cf49667 commit 9c9736e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
# Set always-auth in npmrc
always-auth: true # optional, default is false
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0
node-version: lts # optional
node-version: 12.x # optional
check-latest: true

- name: Install dependencies
run: yarn --frozen-lockfile
Expand Down

0 comments on commit 9c9736e

Please sign in to comment.