From 8d807622807d2f96b82ce575764401c1d4518a9f Mon Sep 17 00:00:00 2001 From: Dicky Moore Date: Tue, 28 Apr 2026 08:36:00 +0100 Subject: [PATCH] test: separate workflow contract checks from refs --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3d44d917f..1304f79ca 100644 --- a/package.json +++ b/package.json @@ -41,10 +41,11 @@ "prepare": "command -v husky >/dev/null 2>&1 && husky || exit 0", "quality": "npm run format:check && npm run lint && npm run lint:md && npm run docs:build && npm run test:install && npm run validate:refs && npm run validate:skills", "rebundle": "node tools/installer/bundlers/bundle-web.js rebundle", - "test": "npm run test:refs && npm run test:install && npm run test:channels && npm run lint && npm run lint:md && npm run format:check", + "test": "npm run test:refs && npm run test:workflow-contracts && npm run test:install && npm run test:channels && npm run lint && npm run lint:md && npm run format:check", "test:channels": "node test/test-installer-channels.js", "test:install": "node test/test-installation-components.js", - "test:refs": "node test/test-file-refs-csv.js && node test/test-closeout-reconciliation.js", + "test:refs": "node test/test-file-refs-csv.js", + "test:workflow-contracts": "node test/test-closeout-reconciliation.js", "validate:refs": "node tools/validate-file-refs.js --strict", "validate:skills": "node tools/validate-skills.js --strict" },