mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-23 12:48:00 +08:00
47 lines
902 B
YAML
47 lines
902 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: 7
|
|
test_suite: "simple"
|
|
- nodejs_version: 7
|
|
test_suite: "installs"
|
|
- nodejs_version: 7
|
|
test_suite: "kitchensink"
|
|
- nodejs_version: 6
|
|
test_suite: "simple"
|
|
- nodejs_version: 6
|
|
test_suite: "installs"
|
|
- nodejs_version: 6
|
|
test_suite: "kitchensink"
|
|
- nodejs_version: 4
|
|
test_suite: "simple"
|
|
- nodejs_version: 4
|
|
test_suite: "installs"
|
|
- nodejs_version: 4
|
|
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
|
|
- sh tasks/e2e-%test_suite%.sh
|