fix: charting library url#26969
Conversation
|
CLA Signature Action: All authors have signed the CLA. You may need to manually re-run the blocking PR check if it doesn't pass in a few minutes. |
🔍 Smart E2E Test Selection
click to see 🤖 AI reasoning detailsE2E Test Selection:
The AdvancedChart component that uses this environment variable is not yet integrated into the main application - it only exists in its own directory with unit tests. No existing E2E tests would be affected by this change since:
No E2E tests are needed for these infrastructure changes. Performance Test Selection: |
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, have a team admin enable autofix in the Cursor dashboard.
| QUICKNODE_POLYGON_URL: ${{ secrets.QUICKNODE_POLYGON_URL }} | ||
| QUICKNODE_BSC_URL: ${{ secrets.QUICKNODE_BSC_URL }} | ||
| QUICKNODE_SEI_URL: ${{ secrets.QUICKNODE_SEI_URL }} | ||
| MM_CHARTING_LIBRARY_URL: ${{ secrets.MM_CHARTING_LIBRARY_URL }} |
There was a problem hiding this comment.
EAS workflow sources public URL from secrets
Medium Severity
In builds.yml, MM_CHARTING_LIBRARY_URL is defined as a public env var in _public_envs with a hardcoded URL value. However, in push-eas-update.yml, it's sourced via ${{ secrets.MM_CHARTING_LIBRARY_URL }}. All other public (non-secret) env vars in this workflow are set as literal values (e.g., RAMP_INTERNAL_BUILD: 'true'). If this GitHub secret isn't configured, the variable will silently resolve to an empty string in EAS update builds, breaking the charting library feature.
Additional Locations (1)
|





Description
Fix charting library url config
Changelog
CHANGELOG entry: null
Related issues
Fixes:
Manual testing steps
Screenshots/Recordings
Before
After
Pre-merge author checklist
Pre-merge reviewer checklist
Note
Low Risk
Low-risk configuration-only change, but a missing/incorrect
MM_CHARTING_LIBRARY_URLsecret/value could cause builds or OTA updates to use the wrong charting assets.Overview
Fixes charting library URL configuration by introducing
MM_CHARTING_LIBRARY_URLas a first-class env var across the build system.The OTA push workflow (
push-eas-update.yml) now injectsMM_CHARTING_LIBRARY_URLfrom GitHub secrets,builds.ymldefines the default URL, andscripts/build.shexports it into the generated.envfor Expo update/build steps.Written by Cursor Bugbot for commit 18c053a. This will update automatically on new commits. Configure here.