mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-01 22:38:10 +08:00
* Bump minimal Node version to 4.7.0 * Bump minimal Node version to 4.7.0 Modified additional files that needed a bump to 4.7.0 minimum node version * Bump minimal Node version to 4.7.0 Reverse changes to packages/create-react-app/index.js as this file needs to continue to work on Node 0.10+ * Bump minimal node version to 6 * Bump minimal node version to 6 * Bump minimal node version to 6
45 lines
897 B
YAML
45 lines
897 B
YAML
image: Visual Studio 2017
|
|
|
|
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"
|
|
|
|
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:
|
|
# TODO: Remove after https://github.com/appveyor/ci/issues/1426 is fixed
|
|
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
|
|
- 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
|