summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/android-app.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/android-app.yml b/.github/workflows/android-app.yml
index e92447884b..e2f4a30571 100644
--- a/.github/workflows/android-app.yml
+++ b/.github/workflows/android-app.yml
@@ -29,6 +29,10 @@ on:
description: Override container image
type: string
required: false
+ run_firebase_tests:
+ description: Run firebase tests
+ type: boolean
+ required: false
# Build if main is updated to ensure up-to-date caches are available
push:
branches: [main]
@@ -300,7 +304,7 @@ jobs:
instrumented-firebase-tests:
name: Run instrumented firebase tests
- if: github.event_name != 'pull_request'
+ if: github.event_name == 'schedule' || github.event.inputs.run_firebase_tests == true
runs-on: ubuntu-latest
timeout-minutes: 30
needs: [build-app]