diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 240aa5dc..da56728b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,6 +106,7 @@ jobs: - name: Create AVD and generate snapshot for caching if: steps.avd-cache.outputs.cache-hit != 'true' + timeout-minutes: 10 uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }} @@ -119,6 +120,7 @@ jobs: - name: Run integration tests id: Run-integration-tests continue-on-error: true + timeout-minutes: 10 uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }} @@ -135,6 +137,7 @@ jobs: - name: Retry integration tests id: Retry-integration-tests continue-on-error: true + timeout-minutes: 10 if: steps.Run-integration-tests.outcome == 'failure' uses: reactivecircus/android-emulator-runner@v2 with: @@ -155,6 +158,7 @@ jobs: - name: Re:Retry integration tests if: steps.Retry-integration-tests.outcome == 'failure' + timeout-minutes: 10 uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }}