forked from software-mansion/react-native-reanimated
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 944 Bytes
/
validate-java.yml
File metadata and controls
39 lines (38 loc) · 944 Bytes
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
name: Java Lint
on:
pull_request:
paths:
- '.github/workflows/validate-java.yml'
- 'android/src/main/java/**'
- 'android/build.gradle'
merge_group:
branches:
- main
push:
branches:
- main
paths:
- '.github/workflows/validate-java.yml'
- 'android/src/main/java/**'
- 'android/build.gradle'
jobs:
check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
concurrency:
group: validate-java-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- name: Clear annotations
run: scripts/clear-annotations.sh
- name: Install node dependencies
run: yarn
- name: Lint
run: yarn lint:java