Fix Dependabot CI failures and improve monorepo configuration#92
Merged
jsfs11 merged 3 commits intodependabot/npm_and_yarn/typescript-eslint/parser-8.40.0from Aug 26, 2025
Conversation
Co-authored-by: jsfs11 <104610748+jsfs11@users.noreply.github.com>
Co-authored-by: jsfs11 <104610748+jsfs11@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Help fix dependabot
Fix Dependabot CI failures and improve monorepo configuration
Aug 26, 2025
a15b22f
into
dependabot/npm_and_yarn/typescript-eslint/parser-8.40.0
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.
Problem
Dependabot PRs were consistently failing CI checks due to lockfile synchronization issues in the pnpm monorepo setup. The root cause was:
--frozen-lockfilewhich prevents lockfile updates during dependency installation/packages/mobileand/packages/server) instead of the root directorypackage.jsonfiles but the rootpnpm-lock.yamlremained unchangedThis resulted in CI failures with errors like:
Solution
1. Smart CI Lockfile Handling
Updated
.github/workflows/ci.ymlto conditionally handle Dependabot PRs:This approach:
--frozen-lockfilefor regular PRs2. Optimized Dependabot Configuration
Simplified
.github/dependabot.ymlfor better pnpm monorepo compatibility:maintainer-usernamewith actual GitHub username)Before:
After:
Testing
Impact
Future Dependabot PRs will use format like
chore(deps): bump package-name from X.X.X to Y.Y.Yand successfully pass all CI checks.✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.