chore(ci): use build-package instead of build in checks workflow#7909
Merged
steveruizok merged 2 commits intomainfrom Feb 13, 2026
Merged
chore(ci): use build-package instead of build in checks workflow#7909steveruizok merged 2 commits intomainfrom
steveruizok merged 2 commits intomainfrom
Conversation
The checks workflow only needs to build SDK packages, not every workspace (apps, docs, templates, vscode). Those all have their own deploy/preview workflows. This narrows the build step to packages/* using the existing build-package script.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
5 Skipped Deployments
|
# Conflicts: # .github/workflows/checks.yml
steveruizok
added a commit
that referenced
this pull request
Feb 13, 2026
Revert the checks workflow back to using `yarn build` instead of `yarn build-package` to ensure all workspaces are built during CI.
3 tasks
steveruizok
added a commit
that referenced
this pull request
Feb 13, 2026
This reverts commit 4758c2f.
steveruizok
added a commit
that referenced
this pull request
Feb 13, 2026
Reverts #7909. The checks workflow should use `yarn build` to build all workspaces, not just packages.
3 tasks
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.
In order to speed up CI checks and avoid building unnecessary workspaces (apps, docs, templates, vscode), this PR narrows the build step in
checks.ymlto useyarn build-packageinstead ofyarn build. Thebuild-packagescript already exists and builds onlypackages/*workspaces. All other workspaces have their own deploy/preview workflows.Change type
improvementTest plan
Note
Low Risk
Workflow-only change that narrows CI build scope; main risk is missing integration/build failures in apps/docs that were previously caught by the checks workflow.
Overview
The Checks CI
buildjob now runsyarn build-package(packages-only) instead ofyarn build, narrowing what gets compiled during PR validation.This effectively stops building non-package workspaces in this workflow while keeping the existing cache and tarball packing steps unchanged.
Written by Cursor Bugbot for commit 507f240. This will update automatically on new commits. Configure here.