Bump up node version for lint github action

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.
This commit is contained in:
Samuel Mannehed 2021-10-22 13:42:41 +02:00
parent 463c39e4af
commit a5499bbffe
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v2
- run: npm install - run: npm install
- run: npm run lint - run: npm run lint
html: html: