Skip to content

Commit f645842

Browse files
ci: upgrade Node.js from 18 to 22 across workflows (#1063)
## Summary - Bumps `NODE_VERSION` from 18 to 22 in `test.yml`, `browserstack.yml`, and `integration.yml` - Node 18 reached end-of-life in April 2025 and is incompatible with the current toolchain (TypeScript 5.8 / rollup-plugin-typescript2) - Node 22 is the current Active LTS (EOL April 2027), consistent with `release.yml` and the build action default ## Test plan - [ ] CI passes on this PR
1 parent fcb5b1b commit f645842

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/browserstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
2020

2121
env:
22-
NODE_VERSION: 18
22+
NODE_VERSION: 22
2323

2424
jobs:
2525

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
2020

2121
env:
22-
NODE_VERSION: 18
22+
NODE_VERSION: 22
2323

2424
jobs:
2525
test-examples:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
1919

2020
env:
21-
NODE_VERSION: 18
21+
NODE_VERSION: 22
2222
CACHE_KEY: '${{ github.ref }}-${{ github.run_id }}-${{ github.run_attempt }}'
2323

2424
jobs:

0 commit comments

Comments
 (0)