diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..5bc2d72 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +# appveyor file +# http://www.appveyor.com/docs/appveyor-yml + +environment: + matrix: + - nodejs_version: 0.10 + - nodejs_version: 0.12 + - nodejs_version: 4 + +version: "{build}" +build: off +deploy: off +matrix: + fast_finish: true + +install: + - ps: Install-Product node $env:nodejs_version + - npm install + +test_script: + - node --version + - npm --version + - npm test \ No newline at end of file