chore: bump Node to 24 LTS, unify CI on .nvmrc - #357
Open
mfazekas wants to merge 1 commit into
Open
Conversation
Node 20 has been EOL since April 2026, and .nvmrc (20.19.0) was already too old for react-native 0.86 — six CI jobs worked around it with their own node-version: 22 pins. Bump .nvmrc to v24.18.0 (active LTS) and point those jobs back at .nvmrc so there is a single source of truth again. Verified under Node 24: yarn install, typecheck, lint, and the full jest suite. Also unblocks running TypeScript scripts directly with node (>=22.18 strips types by default), reducing the need for alternate runtimes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Node 20 has been EOL since April 2026, and .nvmrc (20.19.0) was already too old for react-native 0.86 — six CI jobs worked around it with their own node-version: 22 pins. This bumps .nvmrc to v24.18.0 (active LTS, maintained to April 2028) and points those jobs back at node-version-file: .nvmrc, restoring a single source of truth.
Verified locally under Node 24 LTS: yarn install, typecheck, lint, full jest suite, and (on the #352 branch) the schema generator scripts run natively including WASM extraction, with byte-identical output. Follow-up to the Bun discussion in #352 — with Node 24, TypeScript scripts run directly via node, so Bun becomes a dev convenience rather than a requirement.