webpack/appveyor.yml

37 lines
978 B
YAML
Raw Normal View History

2014-07-31 10:24:05 +02:00
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
branches:
only:
- master
2017-05-16 14:40:37 +02:00
- next
2014-07-31 10:24:05 +02:00
init:
- git config --global core.autocrlf input
2018-05-24 13:24:43 +02:00
cache:
- "..\\.yarn-cache"
- ".jest-cache"
2014-07-31 10:24:05 +02:00
install:
2018-09-21 11:33:42 +02:00
- ps: Install-Product node 10 x64
2018-05-24 13:24:43 +02:00
- yarn --frozen-lockfile --preferred-cache-folder ..\\.yarn-cache
- yarn link --frozen-lockfile --preferred-cache-folder ..\\.yarn-cache || yarn link --frozen-lockfile --preferred-cache-folder ..\\.yarn-cache
- yarn link webpack --frozen-lockfile --preferred-cache-folder ..\\.yarn-cache
2014-07-31 10:24:05 +02:00
build: off
2015-02-21 13:23:51 +01:00
matrix:
fast_finish: true
2014-07-31 10:24:05 +02:00
test_script:
- node --version
- yarn --version
- cmd: set JEST=--maxWorkers=2 --cacheDirectory .jest-cache
2018-09-21 11:33:42 +02:00
- cmd: yarn appveyor:integration
2018-05-24 13:24:43 +02:00
- cmd: yarn istanbul report --report lcovonly
- cmd: yarn unlink webpack
- cmd: yarn global add codecov && codecov -F %job_part% --disable=gcov
2018-10-24 10:52:20 +02:00
- cmd:
del /F /Q .jest-cache\\haste-map* .jest-cache\\perf-cache* 2> null || Ver > null