From 75e4622b1e66d46aeb1f870bffd7513bc6802ee2 Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Thu, 26 Sep 2019 07:53:55 -0400 Subject: [PATCH] Adds a CI to check that the build compiles --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..6246c6a7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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