Browse Source

Adds a CI to check that the build compiles

Orta Therox 5 năm trước cách đây
mục cha
commit
75e4622b1e
1 tập tin đã thay đổi với 14 bổ sung0 xóa
  1. 14 0
      .github/workflows/ci.yml

+ 14 - 0
.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