# http://www.appveyor.com/docs/appveyor-yml

# Test against these versions of Io.js and Node.js.
environment:
  matrix:
  # node.js
    - nodejs_version: "0.10"
    - nodejs_version: "0" #Latest 0.x.x build.
    - nodejs_version: "3" #Latest io.js build.
    - nodejs_version: "4.2.4" #LTS
    - nodejs_version: "Stable"

# Install scripts. (runs after repo cloning)
install:
  # Get the latest stable version of Node.js or io.js
  - ps: Install-Product node $env:nodejs_version
  - npm install

test_script:
  # Output useful info for debugging.
  - node --version
  - npm --version

build: off

version: "{build}"