You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR removes the --silent flag from the pnpm build:deps command in both the iOS and Android deploy jobs, making dependency build output visible in CI logs instead of suppressed.
Both the iOS ("Build Dependencies (iOS)", line ~640) and Android ("Build Dependencies (Android)", line ~1110) job steps are updated consistently.
No functional behavior changes — error handling, the || exit 1 guard, and all surrounding steps are untouched.
Confidence Score: 5/5
Safe to merge — the change only affects log verbosity in CI and has no impact on build correctness or deploy behavior.
Removing --silent from pnpm build:deps in both the iOS and Android jobs is a pure observability improvement. The build command, error guard (|| exit 1), and all surrounding steps are unchanged. Both job paths are updated symmetrically, and there are no logic, auth, or data-handling concerns.
No files require special attention.
Important Files Changed
Filename
Overview
.github/workflows/mobile-deploy.yml
Removes --silent flag from the build:deps pnpm step in both the iOS (line 640) and Android (line 1110) build jobs, so dependency build output is now visible in CI logs.
Sequence Diagram
sequenceDiagram
participant CI as GitHub Actions Runner
participant pnpm as pnpm
participant BuildDeps as build:deps script
Note over CI: Build Dependencies step (iOS & Android)
CI->>pnpm: "pnpm --filter @selfxyz/mobile-app run build:deps"
pnpm->>BuildDeps: execute build:deps
BuildDeps-->>CI: stdout/stderr (now visible, was --silent)
alt Build succeeds
CI->>CI: echo "✅ Dependencies built successfully"
else Build fails
CI->>CI: echo "❌ Dependency build failed" + exit 1
end
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
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.
🚀 Weekly Release to Staging
Release Date: June 13, 2026
Release Branch:
release/staging-2026-06-13This automated PR promotes a snapshot of
devtostagingfor testing.What's Included
All commits merged to
devup to the branch creation time.Note: This PR uses a dedicated release branch, so new commits to
devwill NOT automatically appear here.Review Checklist
Next Steps
After merging, the staging environment will be updated. A production release PR will be created on Sunday.
This PR was automatically created by the Release Calendar workflow on June 13, 2026