From e601444e0a6588e7e8cd577cea209d205585f672 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Wed, 28 Mar 2018 14:14:16 +0200 Subject: [PATCH] Test on all versions on appveyor as well --- appveyor.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 2c9f778f2..e0e4f1a4b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,9 +10,11 @@ init: # Test against these versions of Node.js. environment: matrix: + - nodejs_version: "0.10" + - nodejs_version: "0.12" - nodejs_version: "4" - - nodejs_version: "5" - nodejs_version: "6" + - nodejs_version: "8" # Finish on first failed build matrix: @@ -20,11 +22,12 @@ matrix: # Install node, display versions, install dependencies install: - - ps: Install-Product node $env:nodejs_version + - ps: Install-Product node 8 - node --version && npm --version - git --version && svn --version - npm install -g yarn grunt - yarn + - ps: Install-Product node $env:nodejs_version # Post-install test scripts. test_script: @@ -39,4 +42,4 @@ deploy: off # Cache node modules, and refresh if package.json changes cache: - - node_modules -> package.json + - "%LOCALAPPDATA%\\Yarn"