Adds a CI to check that the build compiles

pull/2748/head
Orta Therox 5 years ago
parent 3596f46e41
commit 75e4622b1e

@ -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
Loading…
Cancel
Save