feat: support Node 24#43
Merged
Merged
Conversation
Add Node 24 to the supported engines range and the CI lint matrix. Node 24 is the current LTS; stylelint and its dependencies run cleanly on it (verified locally on v24.16.0 and via the new matrix entry).
JoshTheWanderer
requested changes
Jun 17, 2026
JoshTheWanderer
left a comment
Member
There was a problem hiding this comment.
Could we also drop 18 and 20, which are EOL now?
gavmck
commented
Jun 17, 2026
Co-authored-by: Gavyn McKenzie <gavyn@etch.co>
JoshTheWanderer
approved these changes
Jun 18, 2026
|
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.



Why
Node 24 is the current LTS. Downstream consumers moving to it (e.g. the Admiral Design System bumping its
.nvmrc/enginesto Node 24) hit annpm warn EBADENGINEbecause this package'sengines.nodetops out at^22:What
^24toengines.node.24to the CI lint matrix so support is actually exercised.Verification
Ran
npm ci+npm test(stylelint over./test) locally on Nodev24.16.0— passes clean. The new matrix entry verifies it in CI.feat:so semantic-release cuts a new minor that consumers can pin to.