Giovanni Giordano a7516f6cb8 Remove lint
We have to investigate on this, because after the Typescript integration is not working anymore, so I have to deepen how we can configure the usage with TypesScript.
2020-01-03 21:56:03 +01:00

21 lines
292 B
YAML

name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install and test
run: |
npm ci
npm test
env:
CI: true