appveyor.yml 513 Bytes
version: "{build}"

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

matrix:
  fast_finish: true

install:
  # Install Node.js
  #- ps: Install-Product node $env:nodejs_version

  # Upgrade npm
  - npm install -g npm

  # Output our current versions for debugging
  - node --version
  - npm --version

  # Install our package dependencies
  - npm install --production

  # Install our current directory as a dependency of itself
  - npm run eslint

build: off