Skip to content

Commit

Permalink
build: enable gradle cache
Browse files Browse the repository at this point in the history
  • Loading branch information
axi92 committed Aug 26, 2024
1 parent e5e2802 commit ee156d6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,19 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'yarn'
- run: |
corepack yarn
which corepack
corepack enable
cd example && yarn install
- name: Cache Gradle
uses: actions/cache@v4
with:
path: |
.gradle
example/android/.gradle
key: gradle

- name: Build android example app
run: yarn build:android

0 comments on commit ee156d6

Please sign in to comment.