ci: resolve issues #109, #110, #111, #112 — full-stack CI, cargo-deny, npm audit, dependabot, release workflow - #123
Merged
dzekojohn4 merged 1 commit intoJul 25, 2026
Conversation
…UnityChainxx#112 — full-stack CI, cargo-deny, npm audit, dependabot, release workflow Closes UnityChainxx#109 — Add backend & frontend CI jobs (lint, test, build) to build.yml Closes UnityChainxx#110 — Add cargo-deny config (deny.toml) and npm audit checks to CI Closes UnityChainxx#111 — Add release workflow with semver tags and grouped changelog Closes UnityChainxx#112 — Add Dependabot config covering npm, cargo, and GitHub Actions
|
@JudeDaniel6 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
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 and enhances the CI/CD pipeline for the StellarHunts monorepo, covering all four areas tracked by issues #109–#112. Every new config file follows existing project conventions and all YAML has been syntax-validated.
Changes
.github/workflows/build.yml (updated)
onchain-buildonchain-testbackend-lintbackend-testfrontend-lintfrontend-build.github/dependabot.yml (new)
Automated dependency updates for 5 ecosystems: root npm, frontend npm, backend npm, onchain cargo, and GitHub Actions. Weekly schedule with grouped updates for NestJS, React, Radix UI, Stellar, and Soroban.
.github/workflows/release.yml (new)
Triggered by
vX.Y.Zsemver tags. Builds all artifacts, generates a grouped changelog from conventional-commit messages (feat, fix, docs, refactor, etc.), creates a GitHub Release, and attaches compiled.wasmbinaries.onchain/deny.toml (new)
cargo-deny configuration auditing security advisories, license compliance (MIT/Apache/BSD/etc.), duplicate crate bans, and source restrictions.
Related Issues
Closes #109 — Backend / frontend CI is missing
Closes #110 — Add cargo-deny and npm audit checks
Closes #111 — Add a release workflow with semver tags and changelog
Closes #112 — Add Dependabot / Renovate for automated dependency updates
Testing
--audit-level=highwithcontinue-on-error: trueto avoid blocking on non-critical advisories--passWithNoTeststo gracefully handle empty test suites