From b112f8591effb16bd48f8ed6cd84945dd2f8d35d Mon Sep 17 00:00:00 2001 From: vladikoff Date: Fri, 15 Aug 2014 11:14:31 -0700 Subject: [PATCH] Add AppVeyor testing --- appveyor.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 appveyor.yml 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