Enhance PopupBridge app switch flow with custom return URL and fallback validation #194
Workflow file for this run
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
| name: Tests | |
| on: [pull_request, workflow_dispatch] | |
| jobs: | |
| unit_test_job: | |
| name: Unit (Xcode 16.4.0) | |
| runs-on: macOS-15-xlarge | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Xcode 16.4.0 | |
| run: sudo xcode-select -switch /Applications/Xcode_16.4.0.app | |
| - name: Install CocoaPod dependencies | |
| run: pod install | |
| - name: Run Unit Tests | |
| run: set -o pipefail && xcodebuild -workspace 'PopupBridge.xcworkspace' -sdk 'iphonesimulator' -configuration 'Debug' -scheme 'UnitTests' -destination 'name=iPhone 16,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify | |
| ui_test_job: | |
| name: UI (Xcode 16.4.0) | |
| runs-on: macOS-15-xlarge | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Xcode 16.4.0 | |
| run: sudo xcode-select -switch /Applications/Xcode_16.4.0.app | |
| - name: Install CocoaPod dependencies | |
| run: pod install | |
| - name: Run UI Tests | |
| run: set -o pipefail && xcodebuild -workspace 'PopupBridge.xcworkspace' -sdk 'iphonesimulator' -configuration 'Release' -scheme 'UITests' -destination 'name=iPhone 16,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify | |
| integration_test_job: | |
| name: Integration (Xcode 16.4.0) | |
| runs-on: macOS-15-xlarge | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Use Xcode 16.4.0 | |
| run: sudo xcode-select -switch /Applications/Xcode_16.4.0.app | |
| - name: Install CocoaPod dependencies | |
| run: pod install | |
| - name: Run Integration Tests | |
| run: set -o pipefail && xcodebuild -workspace 'PopupBridge.xcworkspace' -sdk 'iphonesimulator' -configuration 'Debug' -scheme 'IntegrationTests' -destination 'name=iPhone 16,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify |