Skip to content
Merged
Changes from 3 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
12 changes: 8 additions & 4 deletions eng/templates/build-and-test-tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ steps:
inputs:
versionSpec: $(NodeJSVersion)

# This work around NPM issue https://github.com/npm/cli/issues/8468
# This issue should be resolved when v11.5.3 is released
- script: npm install -g [email protected]
displayName: Downgrade npm to v11.4.1
- script: |
echo "npm version:"
npm --version
echo "Installing 11.6.0..."
npm install -g [email protected]
echo "npm version:"
npm --version
displayName: Install npm v11.6.0

- script: |
robocopy "eng\resources" "$(Build.SourcesDirectory)\artifacts"
Expand Down
Loading