# appveyor file
# http://www.appveyor.com/docs/appveyor-yml

init:
  - git config --global core.autocrlf input

# what combinations to test
environment:
  matrix:
    - nodejs_version: 0.12

install:
  - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  - npm -g install npm@2
  - set PATH=%APPDATA%\npm;%PATH%
  - npm install
  - npm install -g bower
  - bower install

build: off

test_script:
  - node --version
  - npm --version
  - cmd: npm run-script test-windows
