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

init:
  - git config --global core.autocrlf input
  - git config --global user.email "juan@resin.io"
  - git config --global user.name "Juan Cruz Viotti"

cache:
  - C:\Users\appveyor\.node-gyp
  - '%AppData%\npm-cache'

environment:
  matrix:
    - nodejs_version: 6

install:
  - ps: Install-Product node $env:nodejs_version x64
  - npm install -g npm
  - npm install

build: off

test_script:
  - node --version
  - npm --version
  - cmd: npm test
