Skip to content

Commit

Permalink
Bump up node version for lint github action
Browse files Browse the repository at this point in the history
Apparently the new eslint version doesn't work with the older version of
node that we were using. Asking for '@v2' seems to help. It's unclear
what version of node we get now though since v2 isn't as verbose in its
output.
  • Loading branch information
samhed committed Oct 22, 2021
1 parent 463c39e commit a5499bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
- run: npm install
- run: npm run lint
html:
Expand Down

1 comment on commit a5499bb

@samhed
Copy link
Member Author

@samhed samhed commented on a5499bb Oct 22, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With regards to the missing version output:
actions/setup-node#173

Please sign in to comment.