From e8a35e686e8d6e899e367f381472bc69cab65c3c Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Wed, 3 Dec 2014 09:34:53 -0800 Subject: [PATCH] add AppVeyor config for Windows CI build --- appveyor.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 appveyor.yaml diff --git a/appveyor.yaml b/appveyor.yaml new file mode 100644 index 00000000..387456a6 --- /dev/null +++ b/appveyor.yaml @@ -0,0 +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" + +install: + # prerequisites + - ps: Install-Product node $env:nodejs + + # module dependencies + - npm install + - npm install -g gulp + +test_script: + # useful debugging info + - node --version + - npm --version + - node jsdoc.js --version + + - cmd: npm test