Revision 6f954aa3d0a505791753c6cb6273e98d84895915 authored by Roman Dvornov on 20 April 2017, 18:23:41 UTC, committed by Alex Lam S.L on 20 April 2017, 18:23:41 UTC
1 parent f05d4f7
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