webpack/appveyor.yml

29 lines
488 B
YAML

# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
- nodejs_version: 6
install:
- ps: Install-Product node (Get-NodeJsLatestBuild $env:nodejs_version) x64
- npm install yarn -g
- yarn install
- yarn link
- yarn link webpack
build: off
matrix:
fast_finish: true
test_script:
- node --version
- npm --version
- yarn --version
- cmd: npm run appveyor