3
3
exports [` ci-after-success calls concurrently with both scripts when on ci 1` ] = ` Array []` ;
4
4
5
5
exports [` ci-after-success calls concurrently with both scripts when on ci 2` ] = `
6
+ Array [
7
+ Array [
8
+ Running ci-after-success for: main,
9
+ ],
10
+ ]
11
+ ` ;
12
+
13
+ exports [` ci-after-success calls concurrently with both scripts when on ci 3` ] = `
14
+ Array [
15
+ concurrently --prefix [{ name } ] --names codecov,release --prefix-colors bgBlue.bold.reset,bgGreen.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'" "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
16
+ ]
17
+ ` ;
18
+
19
+ exports [` ci-after-success calls concurrently with both scripts when on github actions 1` ] = ` Array []` ;
20
+
21
+ exports [` ci-after-success calls concurrently with both scripts when on github actions 2` ] = `
22
+ Array [
23
+ Array [
24
+ Running ci-after-success for: main,
25
+ ],
26
+ ]
27
+ ` ;
28
+
29
+ exports [` ci-after-success calls concurrently with both scripts when on github actions 3` ] = `
6
30
Array [
7
31
concurrently --prefix [{ name } ] --names codecov,release --prefix-colors bgBlue.bold.reset,bgGreen.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'" "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
8
32
]
@@ -11,6 +35,14 @@ Array [
11
35
exports [` ci-after-success calls concurrently with both scripts when on travis 1` ] = ` Array []` ;
12
36
13
37
exports [` ci-after-success calls concurrently with both scripts when on travis 2` ] = `
38
+ Array [
39
+ Array [
40
+ Running ci-after-success for: main,
41
+ ],
42
+ ]
43
+ ` ;
44
+
45
+ exports [` ci-after-success calls concurrently with both scripts when on travis 3` ] = `
14
46
Array [
15
47
concurrently --prefix [{ name } ] --names codecov,release --prefix-colors bgBlue.bold.reset,bgGreen.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'" "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
16
48
]
@@ -19,6 +51,14 @@ Array [
19
51
exports [` ci-after-success configures semantic release with internal configuration when no local configuration exists 1` ] = ` Array []` ;
20
52
21
53
exports [` ci-after-success configures semantic release with internal configuration when no local configuration exists 2` ] = `
54
+ Array [
55
+ Array [
56
+ Running ci-after-success for: main,
57
+ ],
58
+ ]
59
+ ` ;
60
+
61
+ exports [` ci-after-success configures semantic release with internal configuration when no local configuration exists 3` ] = `
22
62
Array [
23
63
concurrently --prefix [{ name } ] --names release --prefix-colors bgBlue.bold.reset "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release --extends ./src/config/release.config.js'",
24
64
]
@@ -27,6 +67,14 @@ Array [
27
67
exports [` ci-after-success does not do autorelease script when running on travis but in a pull request 1` ] = ` Array []` ;
28
68
29
69
exports [` ci-after-success does not do autorelease script when running on travis but in a pull request 2` ] = `
70
+ Array [
71
+ Array [
72
+ Running ci-after-success for: main,
73
+ ],
74
+ ]
75
+ ` ;
76
+
77
+ exports [` ci-after-success does not do autorelease script when running on travis but in a pull request 3` ] = `
30
78
Array [
31
79
concurrently --prefix [{ name } ] --names codecov --prefix-colors bgBlue.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'",
32
80
]
@@ -35,6 +83,14 @@ Array [
35
83
exports [` ci-after-success does not do the autorelease script when the version is different 1` ] = ` Array []` ;
36
84
37
85
exports [` ci-after-success does not do the autorelease script when the version is different 2` ] = `
86
+ Array [
87
+ Array [
88
+ Running ci-after-success for: main,
89
+ ],
90
+ ]
91
+ ` ;
92
+
93
+ exports [` ci-after-success does not do the autorelease script when the version is different 3` ] = `
38
94
Array [
39
95
concurrently --prefix [{ name } ] --names codecov --prefix-colors bgBlue.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'",
40
96
]
@@ -43,6 +99,14 @@ Array [
43
99
exports [` ci-after-success does not do the codecov script when opted out 1` ] = ` Array []` ;
44
100
45
101
exports [` ci-after-success does not do the codecov script when opted out 2` ] = `
102
+ Array [
103
+ Array [
104
+ Running ci-after-success for: main,
105
+ ],
106
+ ]
107
+ ` ;
108
+
109
+ exports [` ci-after-success does not do the codecov script when opted out 3` ] = `
46
110
Array [
47
111
concurrently --prefix [{ name } ] --names release --prefix-colors bgBlue.bold.reset "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
48
112
]
@@ -51,6 +115,14 @@ Array [
51
115
exports [` ci-after-success does not do the codecov script when there is no coverage directory 1` ] = ` Array []` ;
52
116
53
117
exports [` ci-after-success does not do the codecov script when there is no coverage directory 2` ] = `
118
+ Array [
119
+ Array [
120
+ Running ci-after-success for: main,
121
+ ],
122
+ ]
123
+ ` ;
124
+
125
+ exports [` ci-after-success does not do the codecov script when there is no coverage directory 3` ] = `
54
126
Array [
55
127
concurrently --prefix [{ name } ] --names release --prefix-colors bgBlue.bold.reset "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
56
128
]
@@ -64,11 +136,27 @@ Array [
64
136
]
65
137
` ;
66
138
67
- exports [` ci-after-success does not run either script when no coverage dir and not the right version 2` ] = ` Array []` ;
139
+ exports [` ci-after-success does not run either script when no coverage dir and not the right version 2` ] = `
140
+ Array [
141
+ Array [
142
+ Running ci-after-success for: main,
143
+ ],
144
+ ]
145
+ ` ;
146
+
147
+ exports [` ci-after-success does not run either script when no coverage dir and not the right version 3` ] = ` Array []` ;
68
148
69
149
exports [` ci-after-success runs autorelease script on alternate release branch "next" 1` ] = ` Array []` ;
70
150
71
151
exports [` ci-after-success runs autorelease script on alternate release branch "next" 2` ] = `
152
+ Array [
153
+ Array [
154
+ Running ci-after-success for: next,
155
+ ],
156
+ ]
157
+ ` ;
158
+
159
+ exports [` ci-after-success runs autorelease script on alternate release branch "next" 3` ] = `
72
160
Array [
73
161
concurrently --prefix [{ name } ] --names codecov,release --prefix-colors bgBlue.bold.reset,bgGreen.bold.reset "echo installing codecov && npx -p codecov@3 -c 'echo running codecov && codecov'" "echo installing semantic-release && npx -p semantic-release@17 -c 'echo running semantic-release && semantic-release'",
74
162
]
0 commit comments