Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,17 @@ tasks:
NODE_LTS_VERSION: 22
- func: install dependencies
- func: run tests
- name: node-tests-latest
tags: ["node"]
commands:
- func: fetch source
vars:
NODE_LTS_VERSION: latest
- func: install dependencies
- func: run tests
vars:
TEST_TARGET: node
# TODO(NODE-6662): Fix tests on latest.
# - name: node-tests-latest
# tags: ["node"]
# commands:
# - func: fetch source
# vars:
# NODE_LTS_VERSION: latest
# - func: install dependencies
# - func: run tests
# vars:
# TEST_TARGET: node
- name: web-tests
tags: ["web"]
commands:
Expand Down
5 changes: 2 additions & 3 deletions .evergreen/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ set -o errexit # Exit the script with error if any of the commands fail
## a full nodejs version, in the format v<major>.<minor>.patch
export NODE_LTS_VERSION=${NODE_LTS_VERSION:-16}
# npm version can be defined in the environment for cases where we need to install
# a version lower than latest to support EOL Node versions.
export NPM_VERSION=${NPM_VERSION:-latest}

# a version lower than latest to support EOL Node versions. When not provided will
# be handled by this script in drivers tools.
source $DRIVERS_TOOLS/.evergreen/install-node.sh

npm install "${NPM_OPTIONS}"
Expand Down
Loading