mirror of
https://github.com/vale981/node-ipc
synced 2025-03-05 09:31:42 -05:00
30 lines
647 B
YAML
30 lines
647 B
YAML
![]() |
# http://www.appveyor.com/docs/appveyor-yml
|
||
|
|
||
|
# Test against these versions of Io.js and Node.js.
|
||
|
environment:
|
||
|
matrix:
|
||
|
# node.js
|
||
|
- nodejs_version: "0.12"
|
||
|
- nodejs_version: "4"
|
||
|
- nodejs_version: "5"
|
||
|
- nodejs_version: "6"
|
||
|
|
||
|
# Install scripts. (runs after repo cloning)
|
||
|
install:
|
||
|
# Get the latest stable version of Node 0.STABLE.latest
|
||
|
- ps: Install-Product node $env:nodejs_version
|
||
|
- npm -g install npm
|
||
|
- npm install
|
||
|
- npm run rebuild-tests
|
||
|
|
||
|
# Post-install test scripts.
|
||
|
test_script:
|
||
|
# Output useful info for debugging.
|
||
|
- node --version
|
||
|
- npm --version
|
||
|
# run tests
|
||
|
- npm test
|
||
|
|
||
|
# Don't actually build.
|
||
|
build: off
|