51 строка
1.2 KiB
YAML
51 строка
1.2 KiB
YAML
clone_depth: 10
|
|
|
|
version: "{build}"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
environment:
|
|
fast_finish: true
|
|
matrix:
|
|
- nodejs_version: "8"
|
|
platform: x86
|
|
# other Node versions are skipped, as appveyor only allows 1 concurrent job
|
|
# and we want appveyor finishing ASAP. see #2382
|
|
# - nodejs_version: "9"
|
|
# platform: x86
|
|
|
|
build: off
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
- npm install yarn -g
|
|
- yarn
|
|
|
|
before_test:
|
|
- set "PATH=C:\MinGW\msys\1.0\bin;%PATH%"
|
|
- set "LIGHTHOUSE_CHROMIUM_PATH=%CD%\chrome-win32\chrome.exe"
|
|
- bash ./lighthouse-core/scripts/download-chrome.sh
|
|
- yarn build-all
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- yarn --version
|
|
- which yarn
|
|
- yarn lint
|
|
- yarn unit-core --runInBand
|
|
- yarn unit-cli
|
|
- yarn unit-viewer
|
|
- yarn type-check
|
|
# FIXME: Exclude Appveyor from running `perf` smoketest until we fix the flake.
|
|
# https://github.com/GoogleChrome/lighthouse/issues/5053
|
|
# - yarn smoke
|
|
- yarn smoke ally pwa pwa2 pwa3 dbw redirects seo offline byte tti
|
|
|
|
cache:
|
|
#- chrome-win32 -> appveyor.yml,package.json
|
|
- node_modules -> appveyor.yml,package.json,yarn.lock
|
|
- '%LOCALAPPDATA%\Yarn -> appveyor.yml,package.json,yarn.lock'
|