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:
parent
463c39e4af
commit
a5499bbffe
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue