ci: run test suite on push and PRs#7
Merged
Conversation
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
renezander030
added a commit
that referenced
this pull request
Jun 20, 2026
Roadmap items 5-10 plus open issues, on top of the new test framework (#6) and CI (#7). New commands - init: generate a real-world config (XDG default path; detects bin dir and which preset tools/dirs exist; writes only working sources). Closes #5. - prove <source:item>: turn an unverified hit into a concrete proof. Strict — only a clean execution (tool liveness or a source's `validate` cmd, exit 0) promotes to proven; inspecting a file or a claim stays unverified. - doctor: health-check every configured source; exits non-zero if any is unusable. Closes #1. check - per-source `diagnostics` (JSON) + human footer, so a broken source no longer looks like an empty one (missing cmd, dead root, bad JSON, scan limit). Output stays deterministic (no timing fields). Closes #2. - explainable ranking: matched_terms, filename_matches, recency, score_explanation. Portability / packaging - presets/ (ats, rzq, memory, repos) + auto-detection so real wiring is reproducible without hard-coding paths. - package.json: author, repository, bugs, homepage, publishConfig; bump 0.1.0->0.2.0. CI / tests - doctor/diagnostics/init/prove covered by new test/*.test.mjs in the node:test suite (npm test). - test.yml also verifies `npm pack --dry-run` and a demo sweep. Closes #4. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add GitHub Actions CI so the new
node:testsuite (added in #6) runs automatically on every push tomasterand every pull request.Details
npm teston Node 18, 20, and 22 (matchesengines.node >=18)Follows up on #6, which replaced the smoke test with real assertions but had no CI to enforce them.
🤖 Generated with Claude Code