[Issue #612] Add per-package ci scripts and workspace validation workflow#658
Merged
bryan-thompsoncodes merged 8 commits intomainfrom Apr 2, 2026
Merged
[Issue #612] Add per-package ci scripts and workspace validation workflow#658bryan-thompsoncodes merged 8 commits intomainfrom
bryan-thompsoncodes merged 8 commits intomainfrom
Conversation
Astro projects require build to run first to generate virtual module types (.astro/types.d.ts, astro:content, etc.) before tsc --noEmit can resolve them. This matches the existing ci-website-preview.yml workflow order.
jcrichlake
reviewed
Apr 2, 2026
jcrichlake
reviewed
Apr 2, 2026
d697cdc to
94ec659
Compare
Contributor
|
🚀 Website Preview Deployed! Preview your changes at: https://cg-pr-658.billy-daly.workers.dev This preview will be automatically deleted when the PR is closed. |
widal001
approved these changes
Apr 2, 2026
jcrichlake
approved these changes
Apr 2, 2026
Contributor
|
🗑️ Preview Cleaned Up The preview for this PR has been automatically deleted. |
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
Changes proposed
Adds a
ciscript to each workspace package that runs its full validation pipeline, plus root-level shortcuts and a GitHub Action workflow:Per-package
ciscripts added to eachpackage.json:ciscript runs@common-grants/corechecks → build → typespectypespec-versioning-changelogchecks → build → test@common-grants/clichecks → build → test@common-grants/sdkchecks → build → testwebsitebuild → checks → testRoot
package.jsonscripts:ci:core,ci:changelog-emitter,ci:cli,ci:sdk,ci:website— filter to individual packagesci— runs all of the above in dependency orderNew workflow (
.github/workflows/ci-catalog-validation.yml):pnpm-workspace.yamlandpnpm-lock.yamlchanges, plusworkflow_dispatchci:*in dependency orderContext for reviewers
This addresses Billy's review feedback on PR #647:
pnpm --filterCI steps into reusable root-level scripts (pnpm ci:core, etc.)After merge, the workflow can be tested via
workflow_dispatchin the Actions tab. PR #647 will be rebased on top of this branch.