Skip to content

Commit f7ba179

Browse files
authored
ci(e2e): remove the limit on the number of E2E test case components in git-action (#2725)
1 parent 92d4485 commit f7ba179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-e2e-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
.map((c) => c.trim())
3131
.filter((c) => /^[a-z\-\/]+$/.test(c))
3232
.map((c) => `"\\/${c}\\/"`)
33-
components = [...new Set(components)].slice(0, 3).join(' ')
33+
components = [...new Set(components)].join(' ')
3434
core.setOutput('testComponents', components)
3535
} else {
3636
const warningString =`**[e2e-test-warn]**

0 commit comments

Comments
 (0)