Revert "feat: scaffold AI agent monorepo with core pipeline, event bus and plugin connectors"#2
Conversation
…s and plugin connectors"
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 322d1eeb71
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| "lint": "npm run lint --workspaces --if-present", | ||
| "test": "npm run test --workspaces --if-present", | ||
| "typecheck": "npm run typecheck --workspaces --if-present" | ||
| "test": "echo \"Error: no test specified\" && exit 1", |
There was a problem hiding this comment.
Replace always-failing npm test command
The new scripts.test value unconditionally exits with code 1 (echo "Error: no test specified" && exit 1), which makes every npm test invocation fail even when nothing is wrong. In this repo, .github/workflows/npm-publish-github-packages.yml runs npm test in the build job before publishing, so this change blocks all release workflows introduced by this commit.
Useful? React with 👍 / 👎.
…s and plugin connectors"