ci: consolidate PR checks into single Validate Code gate#175
Merged
Conversation
Merge smoke-test.yml into code-pull-request.yml and add a gate job
("Validate Code") that depends on all other jobs. This provides a
single required status check for branch protection that blocks the PR
if any job fails — validate, Windows smoke test, or Linux smoke test.
Also removes deploy-docs.yml (docs deployed via Cloudflare Pages).
Deploying archgate-cli with
|
| Latest commit: |
ff68b16
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://45aee566.archgate-cli.pages.dev |
| Branch Preview URL: | https://ci-consolidate-pr-checks.archgate-cli.pages.dev |
Extract Windows and Linux smoke tests into separate workflow files called via workflow_call. The orchestrator (code-pull-request.yml) stays lean — validate job + two smoke test calls + gate job.
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
smoke-test.ymlintocode-pull-request.yml— all PR checks now live in one workflowneeds: [validate, smoke-windows, smoke-linux]and fails if any dependency failsdeploy-docs.yml— docs are deployed via Cloudflare PagesHow it works
The
update-llms.yamlandupdate-lock.yamlworkflows remain separate — they auto-commit fixes to the PR branch using a GitHub App token. If they fail, the validate job catches the stale state (llms-full.txt check, frozen lockfile).Test plan
bun run validatepasses locally