ci: adopt shared @btravstack reusable CI + release workflows#594
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Migrates this repository’s CI and release pipelines to the shared reusable workflows in btravstack/config, consolidating the common “gate” steps into a single reusable job while keeping repo-specific jobs in-repo.
Changes:
- Replaced the multi-job CI gate (format/lint/typecheck/knip/test/build/audit/changeset) with a single call to
btravstack/config/.github/workflows/ci-reusable.yml@main. - Replaced the inline Changesets-based release workflow with a call to
btravstack/config/.github/workflows/release-reusable.yml@main, passingRELEASE_PAT. - Updated the
bundle-sizejob dependency to wait for the newcigate job.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/ci.yml | Collapses the common CI gate into a reusable workflow call; keeps bespoke jobs (integration, bundle-size, package-check, node-floor). |
| .github/workflows/release.yml | Delegates release/version/publish to the shared reusable release workflow using RELEASE_PAT. |
btravers
commented
Jul 24, 2026
btravers
commented
Jul 24, 2026
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.
What
Migrate CI and release to the shared reusable workflows in
btravstack/config(the proven pattern, already green inunthrown).CI (
.github/workflows/ci.yml)btravstack/config/.github/workflows/ci-reusable.yml@main.changeset: true— the changeset gate now runs inside the reusablecijob (and is auto-skipped for thechangeset-release/mainPR).test-command: "pnpm test -- --coverage --reporter=default --reporter=github-actions"— preserves the non-default test command.knipleft at its default (true) — the old knip job was plain (pnpm exec knip ...), no extra steps.security-auditleft at its default (true).test-integration,bundle-size(needs: build->needs: ci),package-check,node-floor.Release (
.github/workflows/release.yml)btravstack/config/.github/workflows/release-reusable.yml@main, passingRELEASE_PAT. The oldversion/publishcommands (pnpm run version/pnpm run release) are the reusable's defaults, so no overrides needed.Note
coverage-report) — the reusablecijob runs tests but does not upload coverage. The integration coverage upload stays (it lives in the bespoketest-integrationjob).deploy-docs.ymland.github/actions/setupuntouched.