retro-imager/dependencies/drivelist/appveyor.yml
2020-03-04 16:55:40 +01:00

38 lines
640 B
YAML

# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
image:
- Visual Studio 2015
init:
- git config --global core.autocrlf input
cache:
- C:\Users\appveyor\.node-gyp
- '%AppData%\npm-cache'
# what combinations to test
environment:
matrix:
- nodejs_version: 10
- nodejs_version: 8
- nodejs_version: 6
- nodejs_version: 4
platform:
- x86
- x64
install:
- pip install -r requirements.txt
- ps: Install-Product node $env:nodejs_version x64
- npm install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test
deploy_script:
- ci\prebuild-publish.bat %nodejs_version%