mirror of https://github.com/grpc/grpc-node.git
Merge pull request #297 from murgatroid99/node4_test_script_fix
Don't upgrade npm in Windows tests
This commit is contained in:
commit
aac7d76e39
|
@ -39,7 +39,9 @@ SET FAILED=0
|
|||
for %%v in (4 6 7 8 9) do (
|
||||
call nvm install %%v
|
||||
call nvm use %%v
|
||||
call npm install -g npm
|
||||
if "%%v"=="4" (
|
||||
npm install -g npm@5
|
||||
)
|
||||
@rem https://github.com/mapbox/node-pre-gyp/issues/362
|
||||
call npm install -g node-gyp
|
||||
node -e "console.log(process.versions)"
|
||||
|
|
Loading…
Reference in New Issue