Fix #521: enforce Node SDK napi conformance in CI - #533
Conversation
|
Warning Review limit reached
Next review available in: 4 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (9)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Fixes #521
The always-on Node CI job now builds a native napi binding before running the full npm test suite. The gated test step uses isolated
HOMEandRELAYBURN_HOMEpaths, and CI fails when the binding gate, native artifact, or esbuild prerequisite is missing.The Node SDK conformance helper also verifies that the loaded
.nodecomes from the current checkout instead of an installed platform package. The local loader now resolves the actualsrc/index.<target>.nodebuild output first.The publish workflow reuses its existing napi matrix artifacts for its gated test run, and missing artifacts fail immediately. Local fresh-checkout behavior remains opt-in and may skip native tests until
pnpm run build:napiis run.Validation:
pnpm install --frozen-lockfile && pnpm run build:napi && RELAYBURN_SDK_NAPI_BUILT=1 pnpm run test(SDK 11 passed, 0 skipped; MCP 21 passed, 0 skipped)cargo test --workspaceactionlintand YAML parsing for all edited workflows🤖 Generated with Claude Code