Skip to content

Commit f4f8b39

Browse files
Demo Tests: fix run tests on push or dispatch (#31882)
1 parent a2f3536 commit f4f8b39

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/demos_visual_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,10 @@ jobs:
7878
runs-on: devextreme-shr2
7979
name: Determine scope for framework tests
8080
needs: [check-should-run, get-changes]
81-
if: needs.check-should-run.outputs.should-run == 'true'
81+
if: |
82+
always() &&
83+
needs.check-should-run.outputs.should-run == 'true' &&
84+
(needs.get-changes.result == 'success' || needs.get-changes.result == 'skipped')
8285
outputs:
8386
framework-tests-scope: ${{ steps.determine.outputs.framework-tests-scope }}
8487

0 commit comments

Comments
 (0)