angular-cli/.appveyor.yml

28 lines
558 B
YAML

environment:
nodejs_version: "10.9.0" # Same version as used in CircleCI.
matrix:
fast_finish: true
skip_tags: true
skip_branch_with_pr: true
install:
- ps: Install-Product node $env:nodejs_version
# --network-timeout is a workaround for https://github.com/yarnpkg/yarn/issues/6221
- yarn --frozen-lockfile --network-timeout=500000
- yarn webdriver-update-appveyor
test_script:
- node --version
- yarn --version
- yarn test
- appveyor-e2e.bat
build: off
deploy: off
cache:
- node_modules -> yarn.lock
- "%LOCALAPPDATA%\\Yarn"