浏览代码

Create run-tests.yml

Caleb Porzio 5 年之前
父节点
当前提交
31b79b7e7f
共有 1 个文件被更改,包括 26 次插入0 次删除
  1. 26 0
      .github/workflows/run-tests.yml

+ 26 - 0
.github/workflows/run-tests.yml

@@ -0,0 +1,26 @@
+name: Run Jest Tests
+
+on: [push]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    strategy:
+      matrix:
+        node-version: [8.x, 10.x, 12.x]
+
+    steps:
+    - uses: actions/checkout@v1
+    - name: Use Node.js ${{ matrix.node-version }}
+      uses: actions/setup-node@v1
+      with:
+        node-version: ${{ matrix.node-version }}
+    - name: npm install, build, and test
+      run: |
+        npm ci
+        npm run build --if-present
+        npm test
+      env:
+        CI: true