Revision 9e29b6dad21ab796dbf67d6886c198f3be7a29a0 authored by olsonpm on 13 May 2017, 04:54:01 UTC, committed by Alex Lam S.L on 13 May 2017, 04:54:01 UTC
1 parent c391576
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