Browse Source

chore: use manual invocation of npx yarn (#18902)

* chore: Revert "build: use yarn to install arm modules (#18802)"

This reverts commit 97bec607fef2899cf2a9ebc7a0557896fc64162f.
script/yarn.js doesn't exist in 5-0-x or 6-0-x

* chore: use manual invocation of npx yarn
John Kleinschmidt 5 years ago
parent
commit
b20fe76db7
1 changed files with 3 additions and 3 deletions
  1. 3 3
      vsts-arm-test-steps.yml

+ 3 - 3
vsts-arm-test-steps.yml

@@ -6,8 +6,8 @@ steps:
 
 - bash: |
     cd src/electron
-    node script/yarn.js install --frozen-lockfile
-  displayName: 'Yarn install'
+    npx [email protected] install --frozen-lockfile --verbose
+  displayName: 'NPM install'
 
 - bash: |
     export ZIP_DEST=$PWD/src/out/Default
@@ -58,7 +58,7 @@ steps:
     cd src
     export npm_config_nodedir=$PWD/out/Default/gen/node_headers
     cd electron/spec
-    node ../script/yarn.js install --frozen-lockfile
+    npx [email protected] install --frozen-lockfile --verbose
   displayName: Install test modules
 
 - bash: |