Skip to content

Commit 13982d2

Browse files
author
Kristiyan Ivanov
authored
Unit and Integration tests proposal for change in the workflow (#4284)
1 parent ce16baa commit 13982d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,19 @@ jobs:
8686
8787
frontend-tests:
8888
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/')
9090
uses: ./.github/workflows/tests-frontend.yml
9191
secrets: inherit
9292

9393
backend-tests:
9494
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/')
9696
uses: ./.github/workflows/tests-backend.yml
9797
secrets: inherit
9898

9999
integration-tests:
100100
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/')
102102
uses: ./.github/workflows/tests-integration.yml
103103
secrets: inherit
104104
with:

0 commit comments

Comments
 (0)