environment:
  nodejs_version: "6"

# 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

# Post-install test scripts.
test_script:
  - npm run lint
  - npm run test # don't run cov, circle does that instead
  - ps: test\\windows\\test-windows.ps1

# Don't actually build.
build: off
