File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Install [Node.js](https://nodejs.org) from [Nodesource's DEB repository](https:/
1414
1515| Option ID | Description | Type | Default Value |
1616| :----------| :--------------------------------| :-------| :--------------|
17- | ` version ` | The Node.js version to install. | string | ` 22 ` |
17+ | ` version ` | The Node.js version to install. | string | ` 24 ` |
1818
1919## OS Support
2020
Original file line number Diff line number Diff line change 11{
22 "name" : " Node.js" ,
33 "id" : " node" ,
4- "version" : " 1.1 .0" ,
4+ "version" : " 2.0 .0" ,
55 "description" : " Install Node.js from Nodesource's DEB repository." ,
66 "options" : {
77 "version" : {
88 "type" : " string" ,
99 "enum" : [
10- " 18" ,
1110 " 20" ,
1211 " 21" ,
1312 " 22" ,
14- " 23"
13+ " 23" ,
14+ " 24" ,
15+ " 25"
1516 ],
16- "default" : " 22 " ,
17+ "default" : " 24 " ,
1718 "description" : " Select or enter a Node.js version."
1819 }
1920 },
Original file line number Diff line number Diff line change 22
33set -e
44
5- NODE_VERSION=" ${VERSION:- " 22 " } "
5+ NODE_VERSION=" ${VERSION:- " 24 " } "
66
77curl_installed=" "
88
Original file line number Diff line number Diff line change 77source dev-container-features-test-lib
88
99# Feature-specific tests
10- check " version" node --version
10+ check " version" bash -c " node --version | grep -E 'v24\..+' "
1111check " which node" bash -c " which node | grep /usr/bin/node"
1212
1313# Report result
You can’t perform that action at this time.
0 commit comments