22 строки
411 B
YAML
22 строки
411 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: '4'
|
|
- nodejs_version: '5'
|
|
- nodejs_version: '6'
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- set CI=true
|
|
- npm -g install npm@latest
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
|
- npm install
|
|
matrix:
|
|
fast_finish: true
|
|
build: off
|
|
version: '{build}'
|
|
shallow_clone: true
|
|
clone_depth: 1
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|