Move React Native dev commands under root dev.yml#64
Open
kyle-schellen wants to merge 1 commit into
Conversation
11 tasks
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
11 tasks
48f7c22 to
e7c58f1
Compare
| name: Install pods (React Native sample) | ||
| met?: (cd platforms/react-native/sample/ios && bundle exec pod check --ignore-dev-pods) | ||
| meet: cd platforms/react-native && pnpm run pod-install | ||
| - custom: |
Contributor
There was a problem hiding this comment.
I think we might be able to remove this one too - now your improvement to the metro bundler has come in, which means we dont have to do the build to see changes, this is less relevant
e7c58f1 to
555e5d6
Compare
94fc5d5 to
31fba85
Compare
f9cf466 to
79b74a1
Compare
31fba85 to
92ff28b
Compare
79b74a1 to
fa6fa57
Compare
8d11dc5 to
d26f92e
Compare
fa6fa57 to
87da5c4
Compare
d26f92e to
3b360d1
Compare
87da5c4 to
3604836
Compare
kieran-osgood-shopify
approved these changes
May 13, 2026
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.

Refs issue #908.
What changes are you making?
Move
platforms/react-native/dev.ymlinto namespaced commands at the repo root sodev upanddev react-native <cmd>(ordev rn) work from the monorepo root. Last in the stack after #35 (Android) and #36 (Swift).How to test
From the repo root:
dev upcompletes without error, including Node v22.14.0 / pnpm 10.33.1 setup, RN dependencies, gems, and podsdev rn buildbuilds the@shopify/checkout-sheet-kitmoduledev rn lintruns SwiftLint/SwiftFormat checks, module lint, and sample lintdev rn stylestill works as a legacy alias forlintdev rn lint swift,dev rn lint module, anddev rn lint samplescope linting to one areadev rn formatruns RN Swift formattingdev rn fixstill works as a legacy alias forformatdev rn checkruns license-header checks and lintdev rn check license-headerschecks RN module license headersdev rn serverstarts Metrodev rn sstill works as a short alias forserverdev rn iosruns the iOS sample appdev rn androidruns the Android sample appdev rn cleanwipes module + sample workspaces and stopssccacheBefore you merge
Important
platforms/swift/README.mdand/orplatforms/android/README.md)Releasing a new Swift version?
platforms/swift/ShopifyCheckoutKit.podspecplatforms/swift/Sources/ShopifyCheckoutKit/ShopifyCheckoutKit.swiftplatforms/swift/CHANGELOG.mdplatforms/swift/README.md(major version only)Releasing a new Android version?
versionNameinplatforms/android/lib/build.gradleplatforms/android/CHANGELOG.mdplatforms/android/README.mdTip
See the Contributing documentation for the full release process per platform.