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 f61e9f0 commit a60a0aeCopy full SHA for a60a0ae
.github/workflows/test-node.yml
@@ -0,0 +1,24 @@
1
+name: Test on Node.js
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
+ strategy:
13
+ matrix:
14
+ node-version: [12.x, 14.x]
15
+ os: [ubuntu-16.04, macos-latest, windows-latest]
16
+ runs-on: ${{ matrix.os }}
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v1
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
+ - run: npm install
24
+ - run: npm test
.travis.yml
0 commit comments