Add continuous integration

This commit is contained in:
Mark Spanbroek 2021-10-14 14:54:43 +02:00
parent 04b2a31f74
commit 01e18ee494
1 changed files with 14 additions and 0 deletions

14
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm install
- run: npm test