forked from enzymejs/enzyme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
121 lines (121 loc) · 2.99 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
language: node_js
workspaces:
use:
- build
stages:
- install-build
- test
node_js:
- "12"
- "4"
import:
- ljharb/travis-ci:node/latest-npm.yml
install: 'echo already installed!'
before_script:
- 'nvm exec node sh install-relevant-react.sh'
- 'if [ -n "${KARMA-}" ]; then export CHROME_BIN=chromium-browser; export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; fi'
script:
- 'if [ -n "${LINT-}" ]; then npm run lint; elif [ -n "${KARMA-}" ]; then npm run test:karma -- --single-run; elif [ -n "${REACT-}" ]; then npm run travis; else false ; fi'
after_script:
- 'if [ -n "${REACT-}" ] && [ "${TRAVIS_ALLOW_FAILURE}" != true ]; then case "${TRAVIS_NODE_VERSION}" in "8" | "6") ;; *) cat ./coverage/lcov.info | ./node_modules/.bin/coveralls ;; esac ; fi'
- 'if [ -n "${REACT-}" ] && [ "${TRAVIS_ALLOW_FAILURE}" != true ]; then bash <(curl -s https://codecov.io/bash) -f coverage/*.json; fi'
matrix:
fast_finish: true
include:
- stage: install-build
workspaces:
create:
name: build
paths:
- ./
node_js: "lts/*"
env:
install:
- 'npm install'
- 'npm run clean-local-npm'
before_script:
- 'npx lerna bootstrap'
script:
- 'npx lerna run build'
- node_js: "lts/*"
env: LINT=true
stage: test
- node_js: "8"
env: REACT=16
stage: test
- node_js: "6"
env: REACT=16
stage: test
- node_js: "lts/*"
env: REACT=16.8.5 RENDERER=16.8.5
stage: test
- node_js: "lts/*"
env: REACT=16.8.5 RENDERER=16.8.3
stage: test
- node_js: "lts/*"
env: REACT=16.8.3
stage: test
- node_js: "lts/*"
env: REACT=16.8 RENDERER=16.7
stage: test
- node_js: "lts/*"
env: REACT=16.7 RENDERER=16.8
stage: test
- node_js: "lts/*"
env: REACT=16.7 RENDERER=16.7
stage: test
- node_js: "lts/*"
env: REACT=16.3 ADAPTER=16
stage: test
- node_js: "6"
env: KARMA=true REACT=0.13
stage: test
- node_js: "6"
env: KARMA=true REACT=0.14
stage: test
- node_js: "6"
env: KARMA=true REACT=15.4
stage: test
- node_js: "6"
env: KARMA=true REACT=15
stage: test
- node_js: "6"
env: KARMA=true REACT=16
stage: test
allow_failures:
- node_js: "6"
env: KARMA=true REACT=0.13
- node_js: "6"
env: KARMA=true REACT=0.14
- node_js: "6"
env: KARMA=true REACT=15.4
- node_js: "6"
env: KARMA=true REACT=15
- node_js: "6"
env: KARMA=true REACT=16
- node_js: "lts/*"
env: REACT=16.8.5 RENDERER=16.8.3
- node_js: "lts/*"
env: REACT=16.8 RENDERER=16.7
exclude:
- node_js: "6"
env: REACT=0.13
env:
- REACT=16.13
- REACT=16.12
- REACT=16.11
- REACT=16.10
- REACT=16.9
- REACT=16.8
- REACT=16.7
- REACT=16.6
- REACT=16.5
- REACT=16.4
- REACT=16.3
- REACT=16.2
- REACT=16.1
- REACT=16.0
- REACT=15.5
- REACT=15.4
- REACT=0.14
- REACT=0.13