Stop testing on end-of-life versions of Node.js#1200
Merged
Conversation
peterbarker
reviewed
Apr 9, 2026
Contributor
|
On Thu, 9 Apr 2026, Christian Clauss wrote:
+ node-version: [latest, lts/*, lts/-1, lts/-2]
Does the start not cover -1 and -2?
What does that mean?
Usually I'd think a "*" would mean "test all lts releases" - but you are
also specifying -1 and -2 there.
Should we add Node.js v12 and v18 to cover Debian 11, Debian 12, and Ubuntu 22.04?
If it's quick we should probably do it.
|
`node-version: [latest, lts/*, lts/-1, lts/-2]` Currently: * latest: v25.9.0 * lts/*: v24.14.1 * lts/-1: v22.22.2 * lts/-2: v20.20.2 * https://nodejs.org/en/about/previous-releases * https://github.com/actions/setup-node?tab=readme-ov-file#supported-version-syntax
Contributor
Author
|
Yes. NVM LTS syntax is inexplicable. From the URL above...
|
peterbarker
approved these changes
Apr 11, 2026
Contributor
|
I'd still like @Williangalvani to say this is OK by him; I'm guessing BlueOS might care. |
Contributor
|
Merged, thanks! |
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-version: [latest, lts/*, lts/-1, lts/-2]Currently:
https://nodejs.org/en/about/previous-releases
https://github.com/actions/setup-node?tab=readme-ov-file#supported-version-syntax
Note
Debian GNU/Linux 11 (bullseye) defaults to v12.22.12
Ubuntu 22.04.5 LTS (jammy) defaults to v12.22.9
Debian GNU/Linux 12 (bookworm) defaults to v18.20.4
%
docker run -it ubuntu:22.04#
apt update && DEBIAN_FRONTEND=noninteractive apt install --yes nodejs && node --version && exit