diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..7474ee5 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,29 @@ +# appveyor file +# http://www.appveyor.com/docs/appveyor-yml +project_id: "ns3waxwcw8ddcr3f" + +# build version format +version: "{build}" + +# fix lineendings in Windows +init: + - git config --global core.autocrlf input + +# what combinations to test +environment: + matrix: + - nodejs_version: 0.10 + +# Get the latest stable version of Node 0.STABLE.latest +install: + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) + - npm install -g grunt-cli + - npm install + +build: off + +test_script: + - node --version + - npm --version + - ps: grunt test --no-color # PowerShell + - cmd: grunt test --no-color