We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 648d848 commit 02db04aCopy full SHA for 02db04a
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Test
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ test:
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ os: [macos-latest, ubuntu-latest]
13
+ node: [20, 22, 24, 25]
14
+ name: Node ${{ matrix.node }} / ${{ matrix.os }}
15
+ runs-on: ${{ matrix.os }}
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: ${{ matrix.node }}
21
+ - run: npm install
22
+ - run: npm test
0 commit comments