Add github workflow

This commit is contained in:
Giovanni Giordano 2020-01-03 21:32:29 +01:00
parent b4cc0653a9
commit 36b36e8dc3
4 changed files with 22 additions and 11101 deletions

20
.github/workflows vendored Normal file
View file

@ -0,0 +1,20 @@
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm test
env:
CI: true