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.
2 parents 0eb6f04 + e4f7ee5 commit a8437b0Copy full SHA for a8437b0
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+---
2
+name: ci
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - "*"
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ strategy:
14
+ matrix:
15
+ node-version: [18.x, 19.x]
16
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - name: Use Node.js ${{ matrix.node-version }}
20
+ uses: actions/setup-node@v2
21
+ with:
22
+ node-version: ${{ matrix.node-version }}
23
+ cache: "npm"
24
+ - run: npm ci
25
+ - run: npm test
.travis.yml
0 commit comments