From 8a35ec42997f98e6274242d1d07bf80b5bf91d25 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 26 Feb 2026 17:31:37 +0000 Subject: [PATCH] story-kit: create 216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm --- ...test_instead_of_hardcoded_frontend_pnpm.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .story_kit/work/1_upcoming/216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm.md diff --git a/.story_kit/work/1_upcoming/216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm.md b/.story_kit/work/1_upcoming/216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm.md new file mode 100644 index 0000000..5cba4c7 --- /dev/null +++ b/.story_kit/work/1_upcoming/216_story_merge_quality_gates_should_use_project_toml_components_and_script_test_instead_of_hardcoded_frontend_pnpm.md @@ -0,0 +1,20 @@ +--- +name: "Merge quality gates should use project.toml components and script/test instead of hardcoded frontend/pnpm" +--- + +# Story 216: Merge quality gates should use project.toml components and script/test instead of hardcoded frontend/pnpm + +## User Story + +As a project maintainer, I want the merge pipeline quality gates to use the dynamic component setup from project.toml and script/test, so that the pipeline works with any tech stack rather than assuming a frontend/ directory and pnpm. + +## Acceptance Criteria + +- [ ] run_squash_merge uses project.toml component setup commands (same as worktree creation) to prepare the merge workspace instead of hardcoded pnpm install in frontend/ +- [ ] run_merge_quality_gates delegates to script/test for the full test suite instead of separately invoking cargo clippy, cargo test, pnpm build, and pnpm test +- [ ] No hardcoded references to pnpm or frontend/ in the merge pipeline code path (run_squash_merge, run_merge_quality_gates) +- [ ] Existing script/test entrypoint continues to work as the single source of truth for quality gates + +## Out of Scope + +- TBD