mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-23 12:48:00 +08:00
* Try a custom function * fix path * install rsync * Test with node 8 * Ensure package is removed from the tree * Remove ours * matching functions * try cygwin * try c:/ * sigh * Try /cygdrive/ * Try /cygdrive/ * Revert "Try /cygdrive/" This reverts commit ab1ed779456d39bedbdb128a7aec3bb88b8eeb1c. * Use sub-optimal copy * Remove rsync install * Fix variable * Continue on err * Don't link react-scripts, lol * run yarn after eject * re-enable cleanup * uninstall yarn * try with force * appveyor ... seriously? * swallow bad eject * remove eject error swallow * Revert "run yarn after eject" This reverts commit eebf1dbc19aeb6e1f66d5ec27bda2d076bea0956. * Run yarn after eject * add a comment
45 lines
897 B
YAML
45 lines
897 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:
|
|
# 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
|