From 01d6420a7bc9af9e4b8b2a180ebe475740e65397 Mon Sep 17 00:00:00 2001 From: minion1227 Date: Thu, 25 Jun 2026 08:56:53 -0700 Subject: [PATCH] docs(contributing): list the three CI-enforced gates omitted from Required Gates (#1372) The Required Gates code block listed 10 of the commands `npm run test:ci` actually runs but omitted three CI-enforced ones: db:migrations:check, ui:version-audit, and ui:test. Add them in their real test:ci order so the documented local gate matches what CI enforces and contributors don't push a PR that passes the documented subset but fails CI on a gate they never ran. --- CONTRIBUTING.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6fc23de50c..396008885f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -101,14 +101,17 @@ checks were skipped and why: ```sh git diff --check npm run actionlint +npm run db:migrations:check npm run typecheck npm run test:coverage npm run test:workers npm run build:mcp npm run test:mcp-pack npm run ui:openapi:check +npm run ui:version-audit npm run ui:lint npm run ui:typecheck +npm run ui:test npm run ui:build npm audit --audit-level=moderate ```