2018-05-09 11:30:27 +00:00
|
|
|
os: Visual Studio 2015
|
|
|
|
version: "{build}"
|
|
|
|
build: off
|
|
|
|
platform: x64
|
2016-11-22 22:28:46 +00:00
|
|
|
environment:
|
2016-12-13 05:19:30 +00:00
|
|
|
matrix:
|
2019-07-09 13:20:24 +00:00
|
|
|
- nodejs_version: 12
|
|
|
|
- nodejs_version: 11
|
2018-05-09 12:13:30 +00:00
|
|
|
- nodejs_version: 10
|
2016-11-22 22:28:46 +00:00
|
|
|
install:
|
2018-05-09 11:56:14 +00:00
|
|
|
- ps: Install-Product node $env:nodejs_version x64
|
2016-12-13 05:19:30 +00:00
|
|
|
- set CI=true
|
2018-05-09 11:44:01 +00:00
|
|
|
- npm i -g npm@latest
|
2016-12-13 05:19:30 +00:00
|
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
2019-07-09 13:20:24 +00:00
|
|
|
- npm i
|
2016-12-13 05:19:30 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
shallow_clone: true
|
|
|
|
clone_depth: 1
|
|
|
|
test_script: npm t
|
2018-05-09 12:17:40 +00:00
|
|
|
cache:
|
|
|
|
- node_modules
|