File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,19 +86,19 @@ jobs:
86
86
87
87
frontend-tests :
88
88
needs : changes
89
- if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'fe/')
89
+ if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'fe/') || startsWith(github.ref_name, 'fe+be/')
90
90
uses : ./.github/workflows/tests-frontend.yml
91
91
secrets : inherit
92
92
93
93
backend-tests :
94
94
needs : changes
95
- if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/')
95
+ if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/') || startsWith(github.ref_name, 'fe+be/')
96
96
uses : ./.github/workflows/tests-backend.yml
97
97
secrets : inherit
98
98
99
99
integration-tests :
100
100
needs : changes
101
- if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/')
101
+ if : inputs.group_tests == 'all' || inputs.group_tests == 'without_e2e' || startsWith(github.ref_name, 'be/') || startsWith(github.ref_name, 'fe+be/')
102
102
uses : ./.github/workflows/tests-integration.yml
103
103
secrets : inherit
104
104
with :
You can’t perform that action at this time.
0 commit comments