fix tests

This commit is contained in:
JFH
2021-03-09 22:54:05 +01:00
parent 24041ab073
commit 811dc5ae5b
6 changed files with 24284 additions and 2666 deletions

19
.github/worflows/onpush.yml vendored Normal file
View File

@@ -0,0 +1,19 @@
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: npm install, test and lint
run: |
npm ci
npm run lint