CI to detect broken URLs in source code #1879
Workflow file for this run
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: 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 |