fix(ci): Found one low-severity diagnostic bug in the new Full Release Val (#74513)

Co-authored-by: openclaw-clawsweeper[bot] <280122609+openclaw-clawsweeper[bot]@users.noreply.github.com>
This commit is contained in:
clawsweeper[bot]
2026-04-29 14:08:07 -07:00
committed by GitHub
parent 296d07c22f
commit fbe41fbdfc
2 changed files with 10 additions and 7 deletions

View File

@@ -410,6 +410,10 @@ describe("package artifact reuse", () => {
expect(workflow).toContain("### Slowest jobs: ${label}");
expect(workflow).toContain("### Longest queues: ${label}");
expect(workflow).toContain("| Job | Result | Queue minutes | Run minutes |");
expect(workflow).toContain('gh run view "$run_id" --json createdAt,jobs');
expect(workflow).toContain(
'gh api --paginate "repos/${GITHUB_REPOSITORY}/actions/runs/${run_id}/jobs?per_page=100"',
);
expect(workflow).toContain("(.started_at | ts) - (.created_at | ts)");
expect(workflow).not.toContain('gh run view "$run_id" --json createdAt,jobs');
});
});