forked from enviPath/enviPy
20 lines
373 B
YAML
20 lines
373 B
YAML
version: 1.0.{build}
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 4
|
|
- nodejs_version: 5
|
|
- nodejs_version: 6
|
|
- nodejs_version: 7
|
|
- nodejs_version: 8
|
|
install:
|
|
- cmd: npm install
|
|
build: off
|
|
test_script:
|
|
- ps: >-
|
|
$nodeProcess = start node bin\chromedriver -PassThru
|
|
|
|
sleep 5
|
|
|
|
if ($nodeProcess.HasExited) { exit 1 }
|
|
|
|
Stop-Process -Id $nodeProcess.Id -Force |