forked from wmonk/create-react-app-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
28 lines (28 loc) · 743 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
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 = "kitchensink" ]; then tasks/e2e-kitchensink.sh; fi'
- 'if [ $TEST_SUITE = "old-node" ]; then tasks/e2e-old-node.sh; fi'
# Disabled for the moment, since it requires additional work to be done.
# - 'if [ $TEST_SUITE = "installs" ]; then tasks/e2e-installs.sh; fi'
env:
matrix:
- TEST_SUITE=simple
- TEST_SUITE=kitchensink
# See comment above
# - TEST_SUITE=installs
matrix:
include:
- node_js: 6
env: TEST_SUITE=kitchensink