Skip to content

Commit

Permalink
EMBR-5304 move scripts to common folder
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmunz committed Oct 16, 2024
1 parent 8d4e716 commit a06baa8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ jobs:
if: steps.changed_files.outputs.android == 'true'

- name: Run Android Unit Tests
run: yarn run android:test $(./scopes-from-file-changes.ts ${{ steps.changed_files.outputs.android_files }})
run: yarn run android:test $(./scripts/scopes-from-file-changes.ts ${{ steps.changed_files.outputs.android_files }})
if: steps.changed_files.outputs.android == 'true'
2 changes: 1 addition & 1 deletion .github/workflows/ios.unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,5 @@ jobs:
if: steps.changed_files.outputs.ios == 'true'

- name: Run iOS Unit Tests
run: yarn run ios:test $(./scopes-from-file-changes.ts ${{ steps.changed_files.outputs.ios_files }})
run: yarn run ios:test $(./scripts/scopes-from-file-changes.ts ${{ steps.changed_files.outputs.ios_files }})
if: steps.changed_files.outputs.ios == 'true'
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"ios:build:clean": "xcodebuild clean -workspace test-project/ios/RNEmbraceTestProject.xcworkspace -scheme RNEmbraceTests",
"ios:schemes": "xcodebuild -workspace test-project/ios/RNEmbraceTestProject.xcworkspace -list",
"ios:install": "cd test-project && yarn install && cd ios && pod install && rm .xcode.env.local",
"ios:test": "../../run-ios-tests.sh test-project/ios/RNEmbraceTestProject.xcworkspace RNEmbraceTests"
"ios:test": "../../scripts/run-ios-tests.sh test-project/ios/RNEmbraceTestProject.xcworkspace RNEmbraceTests"
},
"devDependencies": {
"typescript": "^5.6.3"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-tracer-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"build": "node update_android_version.ts && ./copy-native-src.sh && tsc",
"android:test": "node update_android_version.ts && cd native-src && yarn install && cd android && ./gradlew :app:detekt && ./gradlew :app:testDebugUnitTest && cd ../../",
"ios:install": "cd native-src && yarn install && cd ios && pod install && rm .xcode.env.local",
"ios:test": "../../run-ios-tests.sh native-src/ios/ReactNativeTracerProvider.xcworkspace ReactNativeTracerProvider"
"ios:test": "../../scripts/run-ios-tests.sh native-src/ios/ReactNativeTracerProvider.xcworkspace ReactNativeTracerProvider"
},
"peerDependencies": {
"react-native": ">=0.56.0"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit a06baa8

Please sign in to comment.