Add test GitHub action

This commit is contained in:
Max Goodhart
2020-08-26 11:20:46 -07:00
parent 21bfacd84b
commit 93a29ecfac

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

@@ -0,0 +1,17 @@
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm install
- run: npm test
env:
CI: true