-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: pin pnpm version to 7.30.5 (#14823)
Port of #14815 to internal 3.2 release branch.
- Loading branch information
1 parent
89d0fa7
commit 2f5f3cb
Showing
6 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,8 @@ steps: | |
workingDirectory: . | ||
script: | | ||
# Install pnpm globally | ||
npm i -g pnpm | ||
npm i -g [email protected] | ||
pnpm -v | ||
# We only want to install the root package deps, so we set recursive-install to false | ||
pnpm config set recursive-install false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -239,7 +239,8 @@ stages: | |
targetType: 'inline' | ||
workingDirectory: ${{ parameters.buildDirectory }} | ||
script: | | ||
npm i -g pnpm | ||
npm i -g [email protected] | ||
pnpm -v | ||
pnpm config set store-dir $(pnpmStorePath) | ||
- task: Bash@3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,8 @@ steps: | |
workingDirectory: ${{ parameters.buildDirectory }} | ||
script: | | ||
pushd "$(Build.SourcesDirectory)/build-tools" | ||
npm i -g pnpm | ||
npm i -g [email protected] | ||
pnpm -v | ||
pnpm config set store-dir $(pnpmStorePath) | ||
pnpm i | ||
popd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,7 +94,8 @@ jobs: | |
targetType: 'inline' | ||
workingDirectory: ${{ parameters.buildDirectory }} | ||
script: | | ||
npm i -g pnpm | ||
npm i -g [email protected] | ||
pnpm -v | ||
pnpm config set store-dir $(pnpmStorePath) | ||
- task: Bash@3 | ||
|