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.
1 parent 1643639 commit 2233c5fCopy full SHA for 2233c5f
.github/workflows/tests.yml
@@ -1,4 +1,3 @@
1
-
2
name: Unit Tests
3
4
on:
@@ -7,13 +6,20 @@ on:
7
6
jobs:
8
run-tests:
9
runs-on: ubuntu-latest
+ strategy:
10
+ matrix:
11
+ node-version: [22.12]
12
steps:
13
- uses: actions/checkout@v4
14
+
15
- run: corepack enable
- - uses: actions/setup-node@v4
16
17
+ - name: Use Node.js ${{ matrix.node-version }}
18
+ uses: actions/setup-node@v4
19
with:
- node-version: '20.10.0'
- cache: 'yarn'
20
+ node-version: ${{ matrix.node-version }}
21
+ cache: 'yarn'
22
23
- run: yarn install
24
- run: yarn build
25
- run: yarn test:ci
.nvmrc
@@ -1 +1 @@
-20.10.0
+22.12
0 commit comments