feat: implement automated dependency updates via Dependabot (#263)#333
Open
Topmatrixmor2014 wants to merge 1 commit into
Open
Conversation
…OYS#263) - Add .github/dependabot.yml with weekly npm ecosystem updates - Group minor/patch updates for production and dev dependencies - Limit open PRs to 5 to avoid spamming the PR board - Update .github/workflows/ci.yml with full Lint, Test, Build pipeline - Use actions/setup-node@v4 with npm caching for faster runs - Build job depends on lint and test passing (fail-fast) - Pipeline triggers on push/PR to main, covering all Dependabot PRs Closes BETAIL-BOYS#263
Contributor
|
@Topmatrixmor2014 workflow failed, Checks must be passed successfully |
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
Resolves #263 — Implement automated dependency updates via Dependabot.
Manually tracking version updates for Next.js, Stellar SDK, and React is tedious and error-prone. This PR introduces Dependabot to automatically draft PRs when new non-breaking versions are released, and upgrades the CI pipeline so developers can confidently merge those PRs.
Changes
.github/dependabot.yml(new)npmecosystem targeting the root/directory (wherepackage.jsonlives)dependenciesandautomatedlabels for easy filteringmainbranch.github/workflows/ci.yml(updated)pushandpull_requesttomain— automatically covers all Dependabot PRsnpm ci)npm run lint(ESLint)npm test -- --ci --passWithNoTestsnpm run build, gated behind lint and test passing (fail-fast)actions/checkouttov4Acceptance Criteria ✅
dependabot.ymlconfigurednpmecosystemTesting
The CI workflow will trigger automatically on this PR and run all three jobs (Lint → Test → Build). Dependabot will begin opening grouped PRs on the next scheduled Monday run.