1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
environment:
matrix:
- nodejs_version: '9'
- nodejs_version: '8'
- nodejs_version: '7'
- nodejs_version: '6'
- nodejs_version: '5'
- nodejs_version: '4'
version: '{build}'
# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version
- set PATH=%APPDATA%\npm;%PATH%
- node --version
- npm --version
- npm run ci-or-install
matrix:
fast_finish: false
# No need for MSBuild on this project
build: off
test_script:
- npm test
on_success:
- npm run codecov -- -f coverage/lcov.info
|