mirror of https://github.com/nodejs/node.git
23 lines
334 B
YAML
23 lines
334 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "10"
|
|
- nodejs_version: "9"
|
|
- nodejs_version: "8"
|
|
- nodejs_version: "6"
|
|
|
|
platform:
|
|
- x64
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
- npm config set spin false
|
|
- npm install
|
|
|
|
test_script:
|
|
- npm test
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build: off
|