Merge pull request #43 from microsoft/actions_ci

Adds a CI to check that the build compiles
This commit is contained in:
Alexandru Dima 2019-10-02 22:07:09 +02:00 committed by GitHub
commit 301d809ebb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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