From 6542ebdc707c0da90caaa6fb20812ce2c93812b1 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Tue, 8 May 2018 21:24:24 -0700 Subject: [PATCH] chore(appveyor): do not use latest npm This changes appveyor from using the latest npm version to only using the preinstalled npm version. This is safer, because it's guaranteed to be a compatible version. Fixes #844 --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 3c795280..f66b8174 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,7 +12,6 @@ version: '{build}' # Install scripts. (runs after repo cloning) install: - ps: Install-Product node $env:nodejs_version - - npm -g install npm@latest - set PATH=%APPDATA%\npm;%PATH% - node --version - npm --version