2021-02-23 05:59:42 -07:00
|
|
|
name: Validate Kotlin
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-02-23 06:00:32 -07:00
|
|
|
- main
|
2021-02-23 05:59:42 -07:00
|
|
|
paths:
|
|
|
|
- '.github/workflows/validate-kotlin.yml'
|
|
|
|
- 'android/**'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/validate-kotlin.yml'
|
|
|
|
- 'android/**'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
AndroidLint:
|
|
|
|
name: AndroidLint
|
|
|
|
runs-on: ubuntu-latest
|
2021-02-23 06:06:15 -07:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./android
|
2021-02-23 05:59:42 -07:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup JDK 1.8
|
|
|
|
uses: actions/setup-java@v1
|
|
|
|
with:
|
|
|
|
java-version: 1.8
|
2021-02-23 06:08:10 -07:00
|
|
|
- name: Setup node_modules
|
|
|
|
run: yarn --cwd ..
|
2021-02-23 05:59:42 -07:00
|
|
|
- name: Run Gradle Lint
|
|
|
|
run: ./gradlew lint
|
|
|
|
- uses: yutailang0119/action-android-lint@v1.0.2
|
|
|
|
with:
|
2021-02-23 06:12:17 -07:00
|
|
|
xml_path: android/build/reports/lint-results.xml
|