Adds a CI to check that the build compiles

This commit is contained in:
Orta Therox 2019-09-26 07:53:55 -04:00
parent 3596f46e41
commit 75e4622b1e

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

@ -0,0 +1,14 @@
name: "CI"
on: [pull_request]
jobs:
build:
name: "Builds and Compiles"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- run: npm install
- run: npm run compile