Skip to content

ci: Remove continue-on-error from artifact download steps

ed7001e
Select commit
Loading
Failed to load commit list.
Open

ci: Auto-accept API verifier changes in PRs #5228

ci: Remove continue-on-error from artifact download steps
ed7001e
Select commit
Loading
Failed to load commit list.
@sentry/warden / warden: find-bugs completed May 20, 2026 in 2m 47s

1 issue

find-bugs: Found 1 issue (1 medium)

Medium

`continue-on-error: true` makes a total test-run failure indistinguishable from a clean API check - `.github/workflows/verify-api.yml:70-72`

If dotnet test fails for any reason other than snapshot mismatches (e.g. build error in the test project, missing workload, dotnet crash), no *.received.txt files are produced. accept-api-changes then finds no artifacts, commits nothing, and exits green — silently hiding the fact that the API tests never ran.


⏱ 2m 38s · 36.5k in / 7.7k out · $0.26

Annotations

Check warning on line 72 in .github/workflows/verify-api.yml

See this annotation in the file changed.

@sentry-warden sentry-warden / warden: find-bugs

`continue-on-error: true` makes a total test-run failure indistinguishable from a clean API check

If `dotnet test` fails for any reason other than snapshot mismatches (e.g. build error in the test project, missing workload, dotnet crash), no `*.received.txt` files are produced. `accept-api-changes` then finds no artifacts, commits nothing, and exits green — silently hiding the fact that the API tests never ran.