Skip to content

Commit

Permalink
ci: add test-passed/failed job (#18318)
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red authored Oct 10, 2024
1 parent 2a14884 commit af3cddf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,22 @@ jobs:
- name: Test build
run: pnpm run test-build

test-passed:
if: (!cancelled() && !failure())
needs: test
runs-on: ubuntu-latest
name: Build & Test Passed or Skipped
steps:
- run: echo "Build & Test Passed or Skipped"

test-failed:
if: (!cancelled() && failure())
needs: test
runs-on: ubuntu-latest
name: Build & Test Failed
steps:
- run: echo "Build & Test Failed"

lint:
timeout-minutes: 10
runs-on: ubuntu-latest
Expand Down

0 comments on commit af3cddf

Please sign in to comment.