From 8a24fb1e1d1e2b37d7e05e7c397b8a10ba955efd Mon Sep 17 00:00:00 2001 From: yatinappsmith <84702014+yatinappsmith@users.noreply.github.com> Date: Fri, 7 Oct 2022 09:09:17 +0530 Subject: [PATCH] ci: Update integration-tests-command.yml to handle failures in ui-test step (#17331) --- .github/workflows/integration-tests-command.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index b3f4cb3479..9172d7c421 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -948,6 +948,10 @@ jobs: env: PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }} run: echo "$PAYLOAD_CONTEXT" + + - name: Check ui-test set status + if: needs.ui-test.result != 'success' or needs.fat-container-test.result != 'success' + run: exit 1 package: needs: [ui-test, fat-container-test]