Revision 251ff1d1af3209af99d37007691acd5a3b771cfb authored by Alex Lam S.L on 15 April 2017, 20:04:28 UTC, committed by GitHub on 15 April 2017, 20:04:28 UTC
- mention major version bump
- remove reference to internal API
1 parent ec443e4
Raw File
appveyor.yml
environment:
  matrix:
  - nodejs_version: "0.10"
  - nodejs_version: "0.12"
  - nodejs_version: "4.0"
  - nodejs_version: "6.0"

matrix:
  fast_finish: true

platform:
  - x86
  - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

build: off
back to top