gsxdsm
f120e6c879
FN-8506: run static checks in verify:fast
...
Run canonical pretest validators before test-free verification work.
- Derive read-only static check steps from the root pretest script.
- Test fail-fast static-check planning and execution.
- Document the expanded verify:fast gate and correct changeset metadata.
Files changed:
.changeset/mobile-board-pointercancel-settle.md | 2 +-
docs/testing.md | 5 +-
scripts/__tests__/verify-fast.test.mjs | 105 ++++++++++++++++++++++--
scripts/verify-fast.mjs | 86 ++++++++++++++++---
4 files changed, 174 insertions(+), 24 deletions(-)
Fusion-Task-Id: FN-8506
Fusion-Task-Lineage: 87f74fda-1fd0-4e08-9bfe-51e0c4c9a31d
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai >
2026-07-22 18:26:33 -07:00
gsxdsm
20184acdfd
FN-7486: fix no-diff merge recovery ownership checks
...
Fix no-op task branch recovery by recognizing canonical branches with no unique diff before rejecting inherited foreign trailers.
- Add no-diff ownership classification for already-merged detection when canonical task branches inherit another task's landed commit.
- Teach self-healing and branch-misbound recovery to ignore foreign branch-tip trailers only for branches proven to have no unique task diff.
- Skip synthetic verify:fast typechecks for JavaScript alias packages without tsconfig files and cover the behavior with tests.
- Add regression coverage and a patch changeset for the recovery fix.
Files changed:
.changeset/fn-7486-merge-recovery-noop-ownership.md | 7 ++
.../already-merged-detector.real-git.test.ts | 68 +++++++++++++++++
.../self-healing-already-merged.real-git.test.ts | 89 ++++++++++++++++++++--
packages/engine/src/already-merged-detector.ts | 88 +++++++++++++++------
packages/engine/src/self-healing.ts | 61 +++++++++++++--
scripts/__tests__/verify-fast.test.mjs | 16 +++-
scripts/verify-fast.mjs | 15 +++-
7 files changed, 303 insertions(+), 41 deletions(-)
Fusion-Task-Id: FN-7486
Fusion-Task-Lineage: 4185c6ed-9731-4ffc-b033-34bf0c3a83ad
Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai >
2026-07-03 22:04:45 -07:00
gsxdsm
29aee2196a
FN-7051: restore verify:fast prerequisite builds
...
Restore verify:fast so fresh worktrees prepare required artifacts before boot smoke.\n\n- Bootstrap missing or stale workspace dist artifacts before scoped verification.\n- Always build @runfusion/fusion for source-checkout boot smoke, even when no package diff maps to the CLI.\n- Update verify:fast tests and docs to capture the prerequisite build flow.\n\nFiles changed:\n AGENTS.md | 4 +-\n docs/testing.md | 5 +-\n scripts/__tests__/verify-fast.test.mjs | 29 +++++++++--\n scripts/verify-fast.mjs | 92 ++++++++++++++++++++++++++--------\n 4 files changed, 101 insertions(+), 29 deletions(-)
Fusion-Task-Id: FN-7051
Fusion-Task-Lineage: b8980f15-0103-4f40-9f8d-83907461988a
2026-06-26 01:10:00 -07:00
gsxdsm
f342761f1b
feat: add test-free verify:fast (typecheck + build + boot-smoke)
...
Adds scripts/verify-fast.mjs + root `pnpm verify:fast`, an opt-in, flake-free
verification path that runs typecheck + build scoped to the changed packages
(reusing test-changed.mjs git-diff / changed-package resolution) plus the
existing boot smoke once, with no test suite. Each step is bounded by the
shared runWithWatchdog (class "changed"); exits nonzero on the first failure.
No default changed: pnpm test, the merge gate, and CI are untouched.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-25 17:06:08 -07:00