diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 4474a2bea..d1e9e8c78 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -67,3 +67,13 @@ jobs: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} # https://github.com/cypress-io/github-action/issues/124 COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} + + summary: + runs-on: ubuntu-latest + needs: cypress + + if: always() + + steps: + - name: Summary status + run: if ${{ needs.cypress.result != 'success' && needs.cypress.result != 'skipped' }}; then exit 1; fi