Problem
The E2E - Result job in .github/workflows/e2e.yml runs exit 0 when needs.e2e.result != 'success', so E2E failures do not block PR merges.
Expected
The result job should fail the workflow when E2E tests fail.
Proposed fix
Change the failure branch to exit 1 in the result job status step.
Problem
The
E2E - Resultjob in.github/workflows/e2e.ymlrunsexit 0whenneeds.e2e.result != 'success', so E2E failures do not block PR merges.Expected
The result job should fail the workflow when E2E tests fail.
Proposed fix
Change the failure branch to
exit 1in the result job status step.