Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/fix-dependabot-alerts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,15 @@ jobs:
working-directory: ts
run: |
node tools/scripts/repo-policy-check.mjs --fix || true
pnpm run build
# Use `rebuild` (fluid-build --rebuild), not `build`, so the
# verification matches the clean-checkout CI build_ts job.
# fluid-build's incremental cache and tsc's .tsbuildinfo are
# keyed off the package's own sources + declared dep specs in
# package.json; an in-range transitive dep upgrade doesn't
# bust the cache, so a breaking .d.ts change in a dep can
# pass the incremental build here while still failing CI's
# fresh build.
pnpm run rebuild
echo "build_ok=true" >> "$GITHUB_OUTPUT"
env:
DEBUG_DEMB: true
Expand Down
Loading