Add GHA, package to v0.0.2

This commit is contained in:
arnaucube
2021-02-04 21:00:55 +01:00
parent ed301e93d1
commit 41db9e0164
6 changed files with 27 additions and 1759 deletions

23
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Test
on: [push, pull_request]
jobs:
node-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: 10.x
- name: Build
run: |
npm install
npm run build
- name: Run tests
run: npm run test