forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add appveyor.yml * Execute mocha directly in e2e test * Replace e2e process substitution * Kill nohup node processes after e2e * Disable known failing Windows test * Only build master
- Loading branch information
Showing
3 changed files
with
63 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
environment: | ||
matrix: | ||
- 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" | ||
- nodejs_version: 0.10 | ||
test_suite: "simple" | ||
|
||
cache: | ||
- node_modules | ||
- packages\react-scripts\node_modules | ||
|
||
clone_depth: 50 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
platform: | ||
- x64 | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version $env:platform | ||
|
||
build: off | ||
|
||
test_script: | ||
- node --version | ||
- npm --version | ||
- sh tasks/e2e-%test_suite%.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters