This repository was archived by the owner on Nov 10, 2025. It is now read-only.
UI Tests #49
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: UI Tests | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| test_name: | |
| description: 'If a test name is provided, only that test will be run. Otherwise, all tests will be run. Use the format "ClassName/testName" to run a single test.' | |
| required: false | |
| schedule: | |
| - cron: '0 2 * * 1-5' | |
| jobs: | |
| tests: | |
| name: Tests | |
| runs-on: macos-15 | |
| timeout-minutes: 90 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| device: [iPhone, iPad] | |
| concurrency: | |
| # Only allow a single run of this workflow on each branch, automatically cancelling older runs. | |
| group: ${{ format('ui-tests-{0}-{1}', github.ref, matrix.device) }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2 #v1.2.3 | |
| - uses: actions/cache@v4 | |
| with: | |
| path: vendor/bundle | |
| key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-gems- | |
| - name: Setup environment | |
| run: source ci_scripts/ci_common.sh && setup_github_actions_environment | |
| - name: Run tests | |
| run: | | |
| if [[ -z "${{ github.event.inputs.test_name }}" ]]; then | |
| bundle exec fastlane ui_tests device:${{ matrix.device }} | |
| else | |
| bundle exec fastlane ui_tests device:${{ matrix.device }} test_name:${{ github.event.inputs.test_name }} | |
| fi | |
| - name: Zip results # for faster upload | |
| if: failure() | |
| working-directory: fastlane/test_output | |
| run: zip -r UITests.xcresult.zip UITests.xcresult | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v5 | |
| if: failure() | |
| with: | |
| name: ${{ matrix.device }} | |
| path: fastlane/test_output/UITests.xcresult.zip | |
| retention-days: 7 | |
| if-no-files-found: ignore | |
| - name: Collect coverage | |
| run: xcresultparser -q -o cobertura -t ElementX -p $(pwd) fastlane/test_output/UITests.xcresult > fastlane/test_output/ui-cobertura.xml | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 | |
| with: | |
| fail_ci_if_error: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: uitests | |
| version: v0.7.3 | |
| - name: Collect test results | |
| if: ${{ !cancelled() }} | |
| run: xcresultparser -q -o junit -p $(pwd) fastlane/test_output/UITests.xcresult > fastlane/test_output/ui-junit.xml | |
| - name: Upload test results to Codecov | |
| if: ${{ !cancelled() }} | |
| uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f # v1.1.1 | |
| continue-on-error: true | |
| with: | |
| fail_ci_if_error: false | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: uitests |