Bump FabricExample to RN 0.76 (#3178) #904
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Kotlin Lint | |
on: | |
pull_request: | |
paths: | |
- 'android/**' | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
check: | |
if: github.repository == 'software-mansion/react-native-gesture-handler' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: kotlin-lint-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Use Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install node dependencies | |
run: yarn install --frozen-lockfile | |
- name: Restore build from cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
android/build | |
android/.gradle | |
key: ${{ runner.os }}-kotlin-lint-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'android/build.gradle') }} | |
- name: Lint | |
run: yarn lint:android |