From 750d33b021d1b171405745610fc6ecb116fc023b Mon Sep 17 00:00:00 2001 From: popomore Date: Wed, 11 Mar 2015 14:13:07 +0800 Subject: [PATCH] add appveyor.yml --- appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..fa8b499 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +init: + - git config --global core.autocrlf input + +environment: + matrix: + - nodejs_version: 0.10 + - nodejs_version: 0.11 + - nodejs_version: 0.12 + +install: + - ps: Install-Product node $env:nodejs_version + - npm install + +build: off + +test_script: + - node --version + - npm --version + - npm test