We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e17cb7d commit 182664bCopy full SHA for 182664b
1 file changed
.github/workflows/check.yml
@@ -143,6 +143,25 @@ jobs:
143
- name: Build ferric-example for all architectures
144
run: npm run build -- --android
145
working-directory: packages/ferric-example
146
+
147
+ - name: Setup Java Gradle cache for android test app
148
+ uses: actions/cache@v4
149
+ with:
150
+ path: |
151
+ ~/.gradle/caches
152
+ ~/.gradle/wrapper
153
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
154
+ restore-keys: |
155
+ ${{ runner.os }}-gradle-
156
+ - name: Setup Android Emulator cache
157
158
+ id: avd-cache
159
160
161
+ ~/.android/avd/*
162
+ ~/.android/adb*
163
+ key: avd-29
164
165
- name: Run tests (Android)
166
timeout-minutes: 75
167
uses: reactivecircus/android-emulator-runner@v2
0 commit comments