Skip to content
Merged
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,19 @@ jobs:
- name: Clause-② carrier checker self-test
run: pnpm check:pm-clause2-carriers

# Widening-tell gate self-test (#16448) — the mechanical half of the
# directional clause-② ruling (#16349), and the same split as every step
# around it: the LIVE predicate is `--pair`'s C5 row, a verdict about ONE
# pair's diff, so failing an unrelated PR's CI over it would punish the
# wrong actor. Only the offline self-test runs here.
#
# This gate has no whole-tree production run at all — its input is a DIFF
# supplied by its caller, never a file in the tree — so the `--self-test`
# invocation is the only instrument its matching rules have, which is
# exactly the family `check:self-test-wired` requires this step for.
- name: Widening-tell gate self-test
run: pnpm check:pm-widening-tells

# Governed-merges audit self-test (#9495) — same family, same split as
# the half-state sweeper above: the live sweep enumerates the governed
# merges since a date/ref for the PM round report — report-only by
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
"check:declared-population-live": "node scripts/check-declared-population-live.mjs --self-test && node scripts/check-declared-population-live.mjs",
"check:pm-half-states": "node scripts/pm/check-half-states.mjs --self-test",
"check:pm-clause2-carriers": "node scripts/pm/check-clause2-carriers.mjs --self-test",
"check:pm-widening-tells": "node scripts/pm/check-widening-tells.mjs --self-test",
"check:pm-closed-card-sweep": "node scripts/pm/sweep-closed-cards.mjs --self-test",
"check:pm-governed-merges": "node scripts/pm/check-governed-merges.mjs --self-test",
"check:pm-governed-prose": "node scripts/pm/check-governed-prose.mjs --self-test && node scripts/pm/check-governed-prose.mjs",
Expand Down
Loading
Loading