Skip to content

Commit 693c85b

Browse files
ppwang-sameta-codesync[bot]
authored andcommitted
Drop Node 18 from CI matrix — EOL since Sep 2025
Summary: serialize-javascript v7.x (already pinned in overrides) requires Node >= 20. Node 18 EOL'd Sep 2025. This only affects dev/build tooling, not end-user browsers. Updates: - CI workflow: remove 18.x from node-version matrix - package.json: engines >= 18 → >= 20 Differential Revision: D99437009 fbshipit-source-id: 191ab39519d7cf7a1d0b8ce820586336e3efdc20
1 parent c8f3eba commit 693c85b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/client_js_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
working-directory: client_js
2222
strategy:
2323
matrix:
24-
node-version: [18.x, 20.x, 22.x]
24+
node-version: [20.x, 22.x]
2525

2626
steps:
2727
- name: Checkout repository

client_js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"CHANGELOG.md"
2222
],
2323
"engines": {
24-
"node": ">=18"
24+
"node": ">=20"
2525
},
2626
"resolutions": {
2727
"serialize-javascript": "^7.0.3",

0 commit comments

Comments
 (0)