chore(deps): bump com.pinterest.ktlint:ktlint-bom from 1.3.1 to 1.4.1 #4259
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: '👷 Build → 🧑🔬 Test → 🕵️ Lint' | |
on: | |
push: | |
branches: ["main", "hotfix/*", "chore-updated-icons"] | |
pull_request: | |
branches: ["main", "hotfix/*", "chore-updated-icons"] | |
merge_group: | |
types: [ checks_requested ] | |
branches: ["main", "hotfix/*", "chore-updated-icons"] | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/check-git-lfs | |
- uses: ./.github/actions/setup-java | |
- uses: ./.github/actions/setup-gradle | |
- uses: ./.github/actions/setup-gradle-properties | |
- run: ./gradlew dependencyGuard --quiet | |
- run: ./gradlew spotlessCheck :build-logic:spotlessCheck | |
build-test-lint: | |
needs: validation | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: ./.github/actions/setup-java | |
- uses: ./.github/actions/setup-gradle | |
- uses: ./.github/actions/setup-gradle-properties | |
- name: '👷 Build' | |
id: build | |
run: ./gradlew assembleRelease | |
- name: '📦 Archive APKs' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: apk | |
path: '**/build/outputs/apk/**/*.apk' | |
- name: '📦 Archive AARs' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: aar | |
path: '**/build/outputs/aar' | |
- name: '📢 Diffuse reports' | |
if: ${{ always() && github.event_name == 'pull_request' && steps.build.outcome == 'success' }} | |
uses: ./.github/actions/diffuse-aar | |
- name: '🧑🔬 Test' | |
id: test | |
run: ./gradlew globalCiUnitTest verifyPaparazziRelease | |
- name: '📦 Archive JUnit reports' | |
if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.test.outcome) }} | |
uses: ./.github/actions/archive-junit-reports | |
with: | |
html: '**/build/reports/tests/test*' | |
xml: '**/build/test-results/test*/**.xml' | |
- name: '📦 Archive Paparazzi reports' | |
if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.test.outcome) }} | |
uses: ./.github/actions/archive-paparazzi-reports | |
- name: '📢 Paparazzi report' | |
if: ${{ failure() && steps.test.outcome == 'failure' && github.event_name == 'pull_request'}} | |
uses: ./.github/actions/paparazzi-report | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-number: ${{ github.event.pull_request.number }} | |
- name: '🕵️ Lint' | |
id: lint | |
run: ./gradlew lintRelease | |
- name: '📦 Archive Lint reports' | |
if: ${{ always() && contains(fromJSON('["success", "failure"]'), steps.lint.outcome) }} | |
uses: ./.github/actions/archive-lint-reports | |
with: | |
analysis: './' | |
html: '**/build/reports/lint-results-*.html' | |
sarif: '**/build/reports/lint-results-*.sarif' | |
xml: '**/build/reports/lint-results-*.xml' | |
dokka: | |
needs: validation | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-java | |
- uses: ./.github/actions/setup-gradle | |
- uses: ./.github/actions/setup-gradle-properties | |
- name: '📋 Build Dokka' | |
# https://github.com/Kotlin/dokka/issues/1217 | |
run: ./gradlew dokkaHtmlMultiModule --no-configuration-cache --no-parallel --max-workers=1 | |
- name: '📦 Archive Dokka' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dokka | |
path: 'build/dokka' | |
lava-scan: | |
needs: validation | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: '🌋 Run Lava Vulnerability Scanner' | |
uses: adevinta/lava-action@ddeeddd8ccf45b403741359471a5627644a0c5f6 # v0.3.4 | |
with: | |
version: latest | |
config: lava.yaml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: lava-metrics.json | |
path: metrics.json |