ci: add CI + owner auto-merge + dependabot config#38
Merged
Conversation
CI workflow: lint + typecheck + build via turbo (handles all 8 apps + 1 shared package in one pass thanks to turbo caching). Owner auto-merge: mirrors sentrix-labs/sentrix pattern. Auto-enables GitHub native auto-merge on owner PRs (satyakwok); merges fire when required status checks pass per branch protection ruleset. Dependabot: weekly npm updates grouped (next, tooling, web3) + monthly actions updates. Closes the production-monorepo-with-no-CI gap surfaced 2026-05-07. Apps: faucet, scan, coinblast, dex, solux, airdrop, chain-landing, landing. Operator next steps post-merge: configure branch protection ruleset on main with required status checks: 'lint + typecheck + build (turbo)'.
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
Adds CI/CD scaffolding to Sentriscloud/frontend, closing the production-monorepo-with-no-CI gap.
Workflows added
.github/workflows/ci.yml— runspnpm turbo lint typecheck buildon PR + push to main. Uses pnpm 10.33 + Node 20 (matchespackage.jsonengines+packageManager). Turbo cache parallelizes across all 8 apps..github/workflows/owner-auto-merge.yml— mirrors the pattern proven onsentrix-labs/sentrix. Auto-enables GitHub native auto-merge on PRs authored bysatyakwok. Merge fires only when required status checks pass per branch protection..github/dependabot.yml— weekly npm updates (grouped: next/react, tooling, web3) + monthly actions.Why now
Tonight's session (2026-05-07 v44) merged
sentrix-labs/sentrix#541despite a failing Test job because that repo's branch protection ruleset had norequired_status_checksrule. Same risk applies here at higher impact: production faucet/scan/coinblast/dex/solux/airdrop/landing pages can ship regressions directly to main with no automated verification.Operator next steps post-merge
mainwith required status check:lint + typecheck + build (turbo)Test plan
pnpm turbo lint typecheck buildsucceeds