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