mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-03 17:16:02 +08:00
43 lines
771 B
YAML
43 lines
771 B
YAML
image: Visual Studio 2017
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 8
|
|
test_suite: "simple"
|
|
- nodejs_version: 8
|
|
test_suite: "installs"
|
|
- nodejs_version: 8
|
|
test_suite: "kitchensink"
|
|
- nodejs_version: 6
|
|
test_suite: "simple"
|
|
- nodejs_version: 6
|
|
test_suite: "installs"
|
|
- nodejs_version: 6
|
|
test_suite: "kitchensink"
|
|
|
|
cache:
|
|
- node_modules -> appveyor.cleanup-cache.txt
|
|
- packages\react-scripts\node_modules -> appveyor.cleanup-cache.txt
|
|
|
|
clone_depth: 50
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
platform:
|
|
- x64
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
|
|
build: off
|
|
|
|
skip_commits:
|
|
files:
|
|
- '**/*.md'
|
|
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- bash tasks/e2e-%test_suite%.sh
|