Skip to content

Commit

Permalink
ci: required checks should always run (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
fi3ework authored Oct 22, 2024
1 parent f161e19 commit c8ae3a7
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,12 @@ jobs:
run: pnpm run test:benchmark
# token retrieved from the CodSpeed app at the previous step
token: ${{ secrets.CODSPEED_TOKEN }}

# ======== exit ========
pr-check-required:
if: (!cancelled() && !failure())
needs: [ut-ubuntu, integration-e2e-ubuntu, benchmark-ubuntu]
runs-on: ubuntu-latest
name: Test passed or skipped
steps:
- run: echo "All tests passed or skipped."
9 changes: 9 additions & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,3 +120,12 @@ jobs:

- name: E2E Test (Playwright)
run: pnpm run test:e2e

# ======== exit ========
pr-check-required:
if: (!cancelled() && !failure())
needs: [ut-windows, integration-e2e-windows]
runs-on: ubuntu-latest
name: Test passed or skipped
steps:
- run: echo "All tests passed or skipped."

0 comments on commit c8ae3a7

Please sign in to comment.