Skip to content

Commit

Permalink
Updated lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
prateek-kommunicate authored Dec 23, 2024
1 parent 69e4d51 commit b007fd9
Showing 1 changed file with 34 additions and 4 deletions.
38 changes: 34 additions & 4 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,23 @@ jobs:
run: |
./gradlew clean
# Build the project
- name: Build Project
# Build the kommunicate module
- name: Build Kommunicate module
run: |
./gradlew kommunicate:build
# Build the kommunicate ui module
- name: Build Kommunicate UI module
run: |
./gradlew kommunicateui:build
# Clean the project
- name: Clean the project before app build
run: |
./gradlew clean
# Build the kommunicate module
- name: Build App
run: |
./gradlew build
Expand Down Expand Up @@ -163,8 +178,23 @@ jobs:
run: |
chmod +x ./gradlew
# Run lint checks
- name: Run Lint
# Run lint checks in kommunicate module
- name: Lint Kommunicate module
run: |
./gradlew kommunicate:lint
# Run lint checks in kommunicate ui module
- name: Lint Kommunicate UI module
run: |
./gradlew kommunicateui:lint
# Clean the project
- name: Clean the project before app lint checks
run: |
./gradlew clean
# Run lint checks in app module
- name: Run Lint for App
run: |
./gradlew lint
Expand Down

0 comments on commit b007fd9

Please sign in to comment.