We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07536b5 commit 62f294aCopy full SHA for 62f294a
.github/workflows/test.yml
@@ -0,0 +1,19 @@
1
+name: Test and Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ node-version: [12.x]
11
+ steps:
12
+ - uses: actions/checkout@v1
13
+ - uses: actions/setup-node@v1
14
+ with:
15
+ node-version: ${{ matrix.node-version }}
16
+ - name: Install
17
+ run: npm install
18
+ - name: Test
19
+ run: npm test
0 commit comments