fix tests and configuration files

* update dependencies

* Update .eslintrc.js

* Update .gitignore

* Create onpush.yml

* downgrade 2 packages causing test failure
This commit is contained in:
JFH
2021-05-09 20:51:26 +02:00
committed by GitHub
parent 593c415664
commit c75170916f
5 changed files with 241 additions and 590 deletions

20
.github/workflows/onpush.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
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
npm run test