environment:
  matrix:
    - nodejs_version: "4"
    - nodejs_version: "6"
    - nodejs_version: "7"

install:
  - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  - npm install

test_script:
  - node --version
  - npm --version
  - npm run lint
  - npm test
  - npm run browser

cache:
  - node_modules
  - '%APPDATA%\npm-cache'

build: off
