Merge pull request #75 from get-momo/ci

Add CI
This commit is contained in:
Dimitar Nanov
2023-01-06 18:27:36 +02:00
committed by GitHub
3 changed files with 6000 additions and 302 deletions
+23
View File
@@ -0,0 +1,23 @@
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 14, 16, 18 ]
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm test
+5976 -301
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -75,7 +75,7 @@
"eslint": "^6.7.2",
"eslint-config-ecollect-base": "^0.1.2",
"eslint-plugin-import": "^2.18.2",
"libxmljs": "^0.19.7",
"libxmljs": "^0.19.10",
"mocha": "^7.1.2",
"nyc": "^15.1.0"
}