We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e6b0a commit 514de39Copy full SHA for 514de39
2 files changed
.github/workflows/test.yml
@@ -0,0 +1,18 @@
1
+name: Unit Tests
2
+on: [pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ strategy:
7
+ matrix:
8
+ node-version: [10.x, 12.x, 14.x]
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ - name: Use Node.js ${{ matrix.node-version }}
13
+ uses: actions/setup-node@v1
14
+ with:
15
+ node-version: ${{ matrix.node-version }}
16
+ - name: Test
17
+ - run: npm install
18
+ - run: npm test
.travis.yml
0 commit comments