We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4aa7e3 commit 36772dfCopy full SHA for 36772df
1 file changed
.github/workflows/test.js.yml
@@ -0,0 +1,22 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ node-version: [20.x, 22.x]
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
+ cache: npm
21
+ - run: npm ci
22
+ - run: npm test
0 commit comments