File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -166,16 +166,17 @@ tasks:
166166 NODE_LTS_VERSION : 22
167167 - func : install dependencies
168168 - func : run tests
169- - name : node-tests-latest
170- tags : ["node"]
171- commands :
172- - func : fetch source
173- vars :
174- NODE_LTS_VERSION : latest
175- - func : install dependencies
176- - func : run tests
177- vars :
178- TEST_TARGET : node
169+ # TODO(NODE-6662): Fix tests on latest.
170+ # - name: node-tests-latest
171+ # tags: ["node"]
172+ # commands:
173+ # - func: fetch source
174+ # vars:
175+ # NODE_LTS_VERSION: latest
176+ # - func: install dependencies
177+ # - func: run tests
178+ # vars:
179+ # TEST_TARGET: node
179180 - name : web-tests
180181 tags : ["web"]
181182 commands :
Original file line number Diff line number Diff line change @@ -7,9 +7,8 @@ set -o errexit # Exit the script with error if any of the commands fail
77# # a full nodejs version, in the format v<major>.<minor>.patch
88export NODE_LTS_VERSION=${NODE_LTS_VERSION:- 16}
99# npm version can be defined in the environment for cases where we need to install
10- # a version lower than latest to support EOL Node versions.
11- export NPM_VERSION=${NPM_VERSION:- latest}
12-
10+ # a version lower than latest to support EOL Node versions. When not provided will
11+ # be handled by this script in drivers tools.
1312source $DRIVERS_TOOLS /.evergreen/install-node.sh
1413
1514npm install " ${NPM_OPTIONS} "
You can’t perform that action at this time.
0 commit comments