We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c6b86 commit 9f2e41eCopy full SHA for 9f2e41e
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ branches: [ $default-branch ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ strategy:
15
+ matrix:
16
+ node-version:
17
+ - 8
18
+ - 9
19
+ - 10
20
+ - 12
21
+ - 14
22
23
+ steps:
24
+ - uses: actions/checkout@v6
25
+ - name: Use Node.js ${{ matrix.node-version }}
26
+ uses: actions/setup-node@v6
27
+ with:
28
+ node-version: ${{ matrix.node-version }}
29
+ cache: 'npm'
30
+ - run: npm ci
31
+ - run: npm test
.travis.yml
0 commit comments