mirror of https://github.com/webpack/webpack.git
added appveyor file
This commit is contained in:
parent
6c804e8a6e
commit
f52ab9a036
|
|
@ -0,0 +1,28 @@
|
|||
# appveyor file
|
||||
# http://www.appveyor.com/docs/appveyor-yml
|
||||
|
||||
init:
|
||||
- git config --global core.autocrlf input
|
||||
|
||||
# what combinations to test
|
||||
environment:
|
||||
matrix:
|
||||
- nodejs_version: 0.10
|
||||
- nodejs_version: 0.8
|
||||
- nodejs_version: 0.11
|
||||
|
||||
# combinations having this can fail
|
||||
matrix:
|
||||
allow_failures:
|
||||
- nodejs_version: 0.11
|
||||
|
||||
install:
|
||||
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
|
||||
- npm install
|
||||
|
||||
build: off
|
||||
|
||||
test_script:
|
||||
- node --version
|
||||
- npm --version
|
||||
- cmd: npm test
|
||||
Loading…
Reference in New Issue