mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-03 22:44:38 +08:00
26 lines
582 B
YAML
26 lines
582 B
YAML
---
|
|
language: node_js
|
|
node_js:
|
|
- 4
|
|
- 6
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- packages/create-react-app/node_modules
|
|
- packages/react-scripts/node_modules
|
|
script:
|
|
- 'if [ $TEST_SUITE = "simple" ]; then tasks/e2e-simple.sh; fi'
|
|
- 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
|
|
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
|
|
env:
|
|
global:
|
|
- USE_YARN=no
|
|
matrix:
|
|
- TEST_SUITE=simple
|
|
- TEST_SUITE=installs
|
|
- TEST_SUITE=kitchensink
|
|
matrix:
|
|
include:
|
|
- node_js: 6
|
|
env: USE_YARN=yes TEST_SUITE=simple
|