We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcdbe4 commit 5ada0e1Copy full SHA for 5ada0e1
2 files changed
.evergreen/config.yml
@@ -1994,6 +1994,8 @@ tasks:
1994
updates:
1995
- {key: NODE_LTS_VERSION, value: '22'}
1996
- func: install dependencies
1997
+ vars:
1998
+ NPM_VERSION: 11.11.1
1999
- func: run unit tests
2000
- name: run-unit-tests-node-24
2001
tags:
.evergreen/generate_evergreen_tasks.js
@@ -485,7 +485,9 @@ const unitTestTasks = Array.from(
485
updateExpansions({
486
NODE_LTS_VERSION
487
}),
488
- { func: 'install dependencies' },
+ parseInt(NODE_LTS_VERSION, 10) === 22
489
+ ? { func: 'install dependencies', vars: { NPM_VERSION: '11.11.1' } }
490
+ : { func: 'install dependencies' },
491
{ func: 'run unit tests' }
492
]
493
};
0 commit comments