Skip to content
Merged
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
17 changes: 13 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,19 @@ 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 (before):"
npm --version
displayName: Log npm version (before)

- script: |
npm install -g [email protected]
displayName: Install npm v11.6.0

- script: |
echo "npm version (after):"
npm --version
displayName: Log npm version (after)

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