-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fix notify script not found (#4298)
Co-authored-by: neverland <[email protected]>
- Loading branch information
1 parent
7d37763
commit 8ab4105
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,17 @@ jobs: | |
ref: "main" | ||
client_payload: '{"commitSHA":"${{ github.sha }}","updateComment":true,"repo":"web-infra-dev/rsbuild","suite":"-","suiteRefType":"precoded","suiteRef":"precoded"}' | ||
|
||
- name: Checkout | ||
if: steps.eco_ci.outcome == 'failure' | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 1 | ||
- name: Setup Node.js | ||
if: steps.eco_ci.outcome == 'failure' | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 22 | ||
cache: 'pnpm' | ||
- name: Send Failure Notification | ||
if: steps.eco_ci.outcome == 'failure' | ||
shell: bash | ||
|