Add eslint and prettier support

This commit is contained in:
Joseph Garrone 2020-05-27 22:02:44 +02:00
parent 95d413a2ce
commit 89f37d738b
20 changed files with 1971 additions and 170 deletions

View file

@ -14,7 +14,7 @@ jobs:
if: ${{ !github.event.created }}
strategy:
matrix:
node: [ '13', '12', '11', '10', '8' ]
node: [ '14', '13', '12', '11', '10', '8' ]
name: Test with Node v${{ matrix.node }}
steps:
@ -23,6 +23,8 @@ jobs:
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint:check
- run: npm run format:check
- run: npm run build
- run: npm run test