diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..039d2d3 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,33 @@ +environment: + matrix: + - nodejs_version: "4" + - nodejs_version: "5" + - nodejs_version: "6" + +platform: + - x86 + - x64 + +# checkout all strings with \r\n +init: + - git config --global core.autocrlf true + +# Install scripts. (runs after repo cloning) +install: + # install Node.js and ImageMagick + - ps: | + choco install imagemagick -y + Install-Product node $env:nodejs_version + # install npm modules + - npm install + +# Post-install test scripts. +test_script: + # Output useful info for debugging. + - node --version + - npm --version + # run tests + - npm test + +# Don't actually build. +build: off