mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/jibo-cli.git
synced 2026-06-15 22:56:11 +00:00
26 lines
429 B
YAML
26 lines
429 B
YAML
build: off
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "0.10"
|
|
- nodejs_version: "0.12"
|
|
- nodejs_version: "4"
|
|
- nodejs_version: "5"
|
|
- nodejs_version: "6"
|
|
|
|
skip_tags: true
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install npm
|
|
- .\node_modules\.bin\npm install
|
|
|
|
test_script:
|
|
- node --version
|
|
- .\node_modules\.bin\npm --version
|
|
- .\node_modules\.bin\npm test
|