
# Install scripts. (runs after repo cloning)
install:
  # Get the latest stable version of Node.js or io.js
  - ps: Install-Product node 6

# Post-install test scripts.
test_script:
  # Output useful info for debugging.
  - node --version
  # run tests
  - node test/lint.js

# Don't actually build.
build: off
