mirror of
https://github.com/thinkjs/thinkjs.git
synced 2026-01-25 14:42:47 +00:00
18 lines
399 B
YAML
18 lines
399 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "6.0"
|
|
- nodejs_version: "7.0"
|
|
- nodejs_version: "8.0"
|
|
- nodejs_version: "10.0"
|
|
- nodejs_version: "12.0"
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
|
- npm -g install npm@latest
|
|
- npm install
|
|
build: off
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm run test
|
|
version: "{build}" |