26 lines
341 B
YAML
26 lines
341 B
YAML
version: "{build}"
|
|
|
|
cache:
|
|
- '%AppData%\npm-cache'
|
|
|
|
build: off
|
|
|
|
platform:
|
|
- x64
|
|
- x86
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 6
|
|
- nodejs_version: 8
|
|
- nodejs_version: 9
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
- npm install
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|