mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
20 lines
No EOL
373 B
YAML
20 lines
No EOL
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 |