Revision 17436218891781a5dc4fad8a9c23080c254aa695 authored by Alex Lam S.L on 03 June 2017, 06:00:59 UTC, committed by GitHub on 03 June 2017, 06:00:59 UTC
- remove unused definitions
- replace `array_to_hash()`
1 parent f330ab7
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