mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-13 09:00:30 +08:00
27 lines
642 B
YAML
27 lines
642 B
YAML
---
|
|
dist: trusty
|
|
language: node_js
|
|
node_js:
|
|
- 6
|
|
- 8
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- packages/create-react-app/node_modules
|
|
- packages/react-scripts/node_modules
|
|
install: true
|
|
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'
|
|
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
|
|
env:
|
|
matrix:
|
|
- TEST_SUITE=simple
|
|
- TEST_SUITE=installs
|
|
- TEST_SUITE=kitchensink
|
|
matrix:
|
|
include:
|
|
- node_js: 0.10
|
|
env: TEST_SUITE=old-node
|