ci: add astro check + build smoke as PR gate#21
Merged
Exploitacious merged 1 commit intomainfrom May 1, 2026
Merged
Conversation
Repo had a deploy.yml on push to main but no PR-time CI. With dependabot now opening grouped weekly bumps, every PR needs a real gate. The new ci.yml runs npm ci + astro check (TS + content collections) + npm run build on every PR and push. Catches: - Astro major-version build regressions (the deferred 5->6 PR is the test case). - TS errors introduced by @types/* bumps. - Tailwind config drift on @tailwindcss/vite bumps. - Anything that npm install can resolve but astro build can't.
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.
Phase 1 of Lever 3 from the dependabot-noise audit.
What
New
.github/workflows/ci.ymlrunsnpm ci+astro check+npm run buildon every PR and push to main.Why
Repo had a deploy.yml on push to main but no PR-time CI. With Dependabot now opening grouped weekly bumps, every PR needs a real gate. Catches:
@types/*bumps@tailwindcss/vitebumpsnpm installcan resolve butastro buildcan't