Skip to content

Commit 2233c5f

Browse files
chore: update to node 22 (#443)
1 parent 1643639 commit 2233c5f

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Unit Tests
32

43
on:
@@ -7,13 +6,20 @@ on:
76
jobs:
87
run-tests:
98
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
node-version: [22.12]
1012
steps:
1113
- uses: actions/checkout@v4
14+
1215
- run: corepack enable
13-
- uses: actions/setup-node@v4
16+
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v4
1419
with:
15-
node-version: '20.10.0'
16-
cache: 'yarn'
20+
node-version: ${{ matrix.node-version }}
21+
cache: 'yarn'
22+
1723
- run: yarn install
1824
- run: yarn build
1925
- run: yarn test:ci

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.10.0
1+
22.12

0 commit comments

Comments
 (0)