We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c894d5 commit b4466dbCopy full SHA for b4466db
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ strategy:
14
+ matrix:
15
+ os:
16
+ - ubuntu-latest
17
+ node_version:
18
+ - 10
19
+ - 12
20
+ - 14
21
+ - 16
22
+ name: Running tests with Node ${{ matrix.node_version }} on ${{ matrix.os }}
23
+ runs-on: ${{ matrix.os }}
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - uses: actions/setup-node@v2
27
+ with:
28
+ node-version: ${{ matrix.node_version }}
29
+ cache: 'npm'
30
+ - run: |
31
+ npm run test
.travis.yml
0 commit comments