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 ac15e95 commit 0efcf35Copy full SHA for 0efcf35
.github/workflows/nodejs.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+ - '**'
10
11
+jobs:
12
+ test:
13
+ name: Test on Node.js ${{ matrix.node }}
14
15
+ runs-on: ubuntu-latest
16
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ node: [10, 12, 14]
21
22
+ steps:
23
+ - uses: actions/checkout@v2
24
25
+ - uses: actions/setup-node@v1
26
+ with:
27
+ node-version: ${{ matrix.node }}
28
29
+ - run: yarn install
30
31
+ - name: Test
32
+ run: yarn test
.travis.yml
0 commit comments