22 lines
511 B
YAML
22 lines
511 B
YAML
version: 'test-{build}'
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: '6'
|
|
- nodejs_version: '8'
|
|
- nodejs_version: '10'
|
|
platform:
|
|
- x86
|
|
- x64
|
|
clone_folder: 'c:\projects\%APPVEYOR_PROJECT_NAME%'
|
|
install:
|
|
- ps: 'Install-Product node $env:nodejs_version $env:platform'
|
|
- npm install
|
|
- npm install winston@2.3.1
|
|
- 'npm install https://github.com/yunkong2/yunkong2.js-controller/tarball/master --production'
|
|
test_script:
|
|
- echo %cd%
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|
|
build: 'off'
|