Skip to content

Commit 30a5271

Browse files
committed
chore: update actual config
1 parent feb6fc8 commit 30a5271

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.evergreen.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4110,9 +4110,9 @@ functions:
41104110
script: |
41114111
set -e
41124112
{
4113-
# Fetch Node.js version from VS Code's .nvmrc to ensure we test with the same version
4114-
NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]')
4115-
echo "Using Node.js version from VS Code .nvmrc: ${NODE_JS_VERSION}"
4113+
# Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
4114+
NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
4115+
echo "Using Node.js version for VS Code extension tests: ${NODE_JS_VERSION}"
41164116
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
41174117
docker run \
41184118
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \

0 commit comments

Comments
 (0)