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 20f064b commit b70dc93Copy full SHA for b70dc93
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: Build/test
2
+on:
3
+ push:
4
+ branches:
5
+ - "**"
6
+jobs:
7
+ test:
8
+ runs-on: ${{ matrix.os }}
9
+ strategy:
10
+ fail-fast: true
11
+ matrix:
12
+ os: [macos-latest, ubuntu-latest]
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: actions/setup-node@v2
16
+ with:
17
+ node-version: 14
18
+ - run: npm install
19
+ - run: npm test
20
+ test_windows:
21
+ runs-on: windows-latest
22
23
24
25
26
27
28
+ - run: npm run-script test-windows
.travis.yml
appveyor.yml
0 commit comments