chore: added CC PR review

This commit is contained in:
Murat Ozcan
2025-11-05 13:15:42 -06:00
parent 6fa6ebab12
commit 392436c12e
10 changed files with 1280 additions and 67 deletions

View File

@@ -39,8 +39,10 @@
"release:minor": "gh workflow run \"Manual Release\" -f version_bump=minor",
"release:patch": "gh workflow run \"Manual Release\" -f version_bump=patch",
"release:watch": "gh run watch",
"test": "node test/test-agent-schema.js",
"test:coverage": "c8 --reporter=text --reporter=html node test/test-agent-schema.js",
"test": "npm run test:schemas && npm run test:install && npm run validate:bundles && npm run validate:schemas && npm run lint && npm run format:check",
"test:coverage": "c8 --reporter=text --reporter=html npm run test:schemas",
"test:install": "node test/test-installation-components.js",
"test:schemas": "node test/test-agent-schema.js",
"validate:bundles": "node tools/validate-bundles.js",
"validate:schemas": "node tools/validate-agent-schema.js"
},