Skip to content

Commit 1f3657e

Browse files
authored
Add Node 22 to CI version matrix (#858)
1 parent 4207b31 commit 1f3657e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Install NodeJS
1414
uses: actions/setup-node@v4
1515
with:
16-
node-version: 18.x
16+
node-version: 22.x
1717
- name: Install dependencies
1818
run: npm ci --omit=optional
1919
- name: Code linting

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 18
17+
node-version: 22
1818
registry-url: "https://registry.npmjs.org"
1919

2020
- name: Configure Git

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
runner: [ ubuntu-22.04 ]
28-
node-version: [ 18.x, 20.x ]
28+
node-version: [ 18.x, 20.x, 22.x ]
2929
steps:
3030
- name: Code checkout
3131
uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
needs: smoke-test
5050
strategy:
5151
matrix:
52-
node-version: [ 18.x, 20.x ]
52+
node-version: [ 18.x, 20.x, 22.x ]
5353
container-runtime: [ docker, podman ]
5454
include:
5555
- container-runtime: docker
@@ -78,7 +78,7 @@ jobs:
7878
needs: [ test-testcontainers, list-modules ]
7979
strategy:
8080
matrix:
81-
node-version: [ 18.x, 20.x ]
81+
node-version: [ 18.x, 20.x, 22.x ]
8282
container-runtime: [ docker, podman ]
8383
include:
8484
- container-runtime: docker

0 commit comments

Comments
 (0)