Skip to content

Commit f232021

Browse files
committed
ci: upgrade Node.js version from 18 to 22
Update CI workflows to use Node.js 22 to match local development environment. This provides: - Better compatibility with modern dependencies - Native support for newer JavaScript features - No need for webidl-conversions polyfills - Consistent behavior between local and CI environments
1 parent 2cece06 commit f232021

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 22
2828
cache: "pnpm"
2929

3030
- name: Install dependencies
@@ -65,7 +65,7 @@ jobs:
6565

6666
- uses: actions/setup-node@v4
6767
with:
68-
node-version: 18
68+
node-version: 22
6969
cache: "pnpm"
7070

7171
- name: Install dependencies

.github/workflows/unit-tests.yml

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

2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 18
22+
node-version: 22
2323
cache: "pnpm"
2424

2525
- name: Install dependencies

0 commit comments

Comments
 (0)