Move React Native dev commands under root dev.yml#64
Merged
kyle-schellen merged 1 commit intoMay 13, 2026
Merged
Conversation
11 tasks
Contributor
Author
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
3604836 to
14080fe
Compare
3b360d1 to
cf9fc4b
Compare
14080fe to
a9fdc4f
Compare
11 tasks
Contributor
Author
Merge activity
|
a9fdc4f to
b3da179
Compare
This was referenced May 20, 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 reporoot so
dev upanddev react-native <cmd>(ordev rn) work from themonorepo root. Last in the stack after #35 (Android) and #36 (Swift).
Also addresses review feedback to align RN with the Swift/Android shape:
salias forservercheckalias onlint(Androidcheckhas a larger surface; RN had no license-header check to back it)fix→formatwithfixkept as a legacy alias (matches thedev <platform> formatconvention)dev rn buildso all three platforms expose abuildsubcommandscripts/lint_swifthelp text to point at the canonicaldev react-native formatHow 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-kit-react-nativemoduledev 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 formatauto-fixes Swift lint and format issues (SwiftLint + SwiftFormat)dev rn fixstill works as a legacy alias forformatdev 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.