diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..bf1ecf2fa --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +# Test against the latest version of this Node.js version +environment: + nodejs_version: "4" + +install: + # Get the latest stable version of Node.js + - ps: Install-Product node $env:nodejs_version + - npm install -g grunt-cli + - npm install + +test_script: + # Output useful info for debugging. + - node --version + - npm --version + # run tests + - npm test + +# Don't actually build. +build: off