milligram/.appveyor.yml

21 lines
367 B
YAML
Raw Permalink Normal View History

os: Visual Studio 2015
2020-05-15 04:20:35 +00:00
version: '{build}'
build: off
platform: x64
2016-11-22 22:28:46 +00:00
environment:
2016-12-13 05:19:30 +00:00
matrix:
- nodejs_version: 12
2016-11-22 22:28:46 +00:00
install:
- 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