-
Notifications
You must be signed in to change notification settings - Fork 91
65 lines (56 loc) · 1.71 KB
/
validate-android.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Validate Android
on:
push:
branches:
- main
paths:
- '.github/workflows/validate-android.yml'
- 'packages/react-native-quick-crypto/android/**'
- '.editorconfig'
pull_request:
paths:
- '.github/workflows/validate-android.yml'
- 'packages/react-native-quick-crypto/android/**'
- '.editorconfig'
jobs:
validate_android:
name: Gradle Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.26
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: corretto
java-version: 22
cache: gradle
- name: Setup Android SDK
uses: android-actions/setup-android@v3
with:
accept-android-sdk-licenses: true
log-accepted-android-sdk-licenses: false
# this cmdline tools version barked the least in GHA runners
# hopefully we can remove it in the future
cmdline-tools-version: 9477386
- name: Bootstrap JS
run: |
bun install
- name: Restore Gradle cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run Gradle Lint
run: cd example/android && ./gradlew lint
- name: Parse Gradle Lint Report
uses: yutailang0119/action-android-lint@v4
with:
# ignore-warnings: true
report-path: example/android/app/build/reports/*.xml