This commit is contained in:
alban 2023-01-17 19:36:04 +01:00
commit 306409f49a
215 changed files with 44213 additions and 0 deletions

24
.github/workflows/js.yml vendored Normal file
View file

@ -0,0 +1,24 @@
name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true