Revision daaf1273fa8dcf375fe1da7d36f2cde31558c875 authored by alexlamsl on 18 June 2017, 07:49:49 UTC, committed by alexlamsl on 18 June 2017, 07:49:49 UTC
2 parent s 3fa862c + 1c150c6
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