diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..884f483 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: "{build}" + +clone_depth: 10 + +environment: + matrix: + - nodejs_version: 0.12 + - nodejs_version: 1.1 + +install: + - ps: Install-Product node $env:nodejs_version + - npm install + +build: off + +test_script: + - node --version && npm --version + - npm test +cache: + - node_modules # local npm modules + +matrix: + fast_finish: true