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

# 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
  # install modules
  - appveyor-retry yarn install

# Post-install test scripts.
build_script:
  - node --version
  - npm --version
  - npm test
