# Test against this version of Node.js
environment:
  matrix:
    # node.js
    - nodejs_version: "8"

# 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
  # remove unused modules from node_modules directory
  - npm prune
  # install modules
  - npm run bootstrap

# Post-install test scripts.
test_script:
  # run tests
  - npm test

# nothing to compile in this project
build: off
deploy: off
