From 9001123aacf99bed9a6901c06edc608cb86c10d1 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Tue, 1 Mar 2016 15:30:45 -0800 Subject: [PATCH] chore(appveyor): add in node 4 for appveyor --- appveyor.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cac1fa5..49c6508 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,15 +1,22 @@ +environment: + matrix: + - nodejs_version: '5' + - nodejs_version: '4' + version: '{build}' # Install scripts. (runs after repo cloning) install: - # Get the latest stable version of io.js - - ps: Install-Product node '' + - ps: Install-Product node $env:nodejs_version - npm -g install npm@latest - set PATH=%APPDATA%\npm;%PATH% - node --version - npm --version - npm install +matrix: + fast_finish: true + # No need for MSBuild on this project build: off