boip
Version:
a command line application that creates a new project from a boilerplate stored on GitHub
21 lines (20 loc) • 402 B
YAML
environment:
matrix:
- nodejs_version: '11'
- nodejs_version: '10'
- nodejs_version: '8'
install:
- ps: Install-Product node $env:nodejs_version
- npm install --global npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- npm install
matrix:
fast_finish: true
build: off
shallow_clone: true
test_script:
- node --version
- npm --version
- npm test
cache:
- '%APPDATA%\npm-cache'