version: "{build}"

environment:
  matrix:
    - nodejs_version: 5.1.0

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

build: off

test_script:
  - node --version && npm --version
  - npm test

cache:
  - node_modules            # local npm modules

matrix:
  fast_finish: true
