From 78ed79c49a74f52824d08855b18ecf8da67c5ee6 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 3 Dec 2014 09:53:13 -0800 Subject: [PATCH] attempt to fix AppVeyor config file --- appveyor.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/appveyor.yaml b/appveyor.yaml index 387456a6..59a3109b 100644 --- a/appveyor.yaml +++ b/appveyor.yaml @@ -1,26 +1,26 @@ # http://www.appveyor.com/docs/appveyor-yml -# we're just running test scripts, not compiling anything -build: off -version: "{build}" - environment: matrix: - - nodejs: "0.10" - - nodejs: "0.11" + - nodejs_version: "0.10" + - nodejs_version: "0.11" install: # prerequisites - - ps: Install-Product node $env:nodejs - + - ps: Install-Product node $env:nodejs_version # module dependencies - npm install - npm install -g gulp test_script: - # useful debugging info + # log some useful debugging info - node --version - npm --version - node jsdoc.js --version - + # run tests - cmd: npm test + +# we're just running test scripts, not compiling anything +build: off + +version: "{build}"