features/test-scenarios/scenarios.json
Josh Spicer 01b46faa2d
smart auto-install multiple versions for node (#56)
* node

* fix comment (no-ci)

* Apply suggestions from code review

Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>

* update test scenario

* remove minor for node 18

* update scenarios to object notation

* add shabang

* only set default node once

Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
2022-07-14 11:12:11 -07:00

43 lines
1.1 KiB
JSON

{
"install_jupyterlab": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"remoteUser": "vscode",
"features": {
"common": {
"username": "vscode"
},
"python": {
"install_jupyterlab": true,
"configure_jupyterlab_allow_origin": "*"
}
}
},
"install_additional_node": {
"image": "debian:11",
"features": {
"node": {
"version": "latest",
"additional_versions": "v17.9.1,v14.19.3"
}
}
},
"install_additional_python": {
"image": "ubuntu:focal",
"features": {
"python": {
"version": "3.10.5",
"additional_versions": "3.8,3.9.13"
}
}
},
"install_additional_ruby": {
"image": "ubuntu:focal",
"features": {
"ruby": {
"version": "3.1.2",
"additional_versions": "2.5,3.0.4"
}
}
}
}