Skip to content
This repository was archived by the owner on Jan 26, 2019. It is now read-only.

Commit be1dfe7

Browse files
committed
Add Facebooks Travis File
1 parent 36e61c0 commit be1dfe7

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.travis.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
---
2-
# Use Ubuntu Precise instead of new default Trusty which cause build fail
3-
# with pre installed yarn v0.17.8
4-
# https://github.com/facebookincubator/create-react-app/issues/3054
5-
# TODO: remove after Trusty environment is updated with a lastet version of yarn
6-
dist: precise
2+
dist: trusty
73
language: node_js
84
node_js:
9-
- 6
105
- 8
6+
- 9
117
cache:
128
directories:
139
- node_modules
@@ -16,13 +12,17 @@ cache:
1612
install: true
1713
script:
1814
- 'if [ $TEST_SUITE = "simple" ]; then tasks/e2e-simple.sh; fi'
15+
- 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
16+
- 'if [ $TEST_SUITE = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
17+
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
1918
env:
20-
global:
21-
- USE_YARN=no
2219
matrix:
2320
- TEST_SUITE=simple
24-
- TEST_SUITE=install
25-
# There's a weird Yarn/Lerna bug related to prerelease versions.
26-
# TODO: reenable after we ship 1.0.
27-
# - node_js: 6
28-
# env: USE_YARN=yes TEST_SUITE=simple
21+
- TEST_SUITE=installs
22+
- TEST_SUITE=kitchensink
23+
matrix:
24+
include:
25+
- node_js: 0.10
26+
env: TEST_SUITE=old-node
27+
- node_js: 6
28+
env: TEST_SUITE=kitchensink

0 commit comments

Comments
 (0)