mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-03 17:16:02 +08:00
29 lines
693 B
YAML
29 lines
693 B
YAML
---
|
|
dist: trusty
|
|
language: node_js
|
|
node_js:
|
|
- 8
|
|
- 9
|
|
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
|
|
- node_js: 6
|
|
env: TEST_SUITE=kitchensink
|