We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa09c5 commit ccbee36Copy full SHA for ccbee36
script/vsts/platforms/templates/preparation.yml
@@ -28,12 +28,17 @@ steps:
28
force32bit: $(IsWinX86)
29
displayName: Install Node.js 12.18.3
30
31
- - script: npm install --global npm@7
32
- displayName: Update npm
+ - script: |
+ # install npm
33
+ npm install --global npm@7
34
+
35
+ # install pnpm
36
+ npm install --global pnpm@6
37
38
+ # papm uses this. TODO use npx instead of directly calling shx
39
+ npm install --global shx
40
- # papm uses this. TODO use npx instead of directly calling shx
- - script: npm install --global shx
- displayName: Install shx
41
+ displayName: Install npm, pnpm, shx
42
43
- pwsh: |
44
cd script/vsts
0 commit comments