Skip to content

πŸ“ˆ (Analytics): Improve logEvent App/OS update alert #2545

πŸ“ˆ (Analytics): Improve logEvent App/OS update alert

πŸ“ˆ (Analytics): Improve logEvent App/OS update alert #2545

# Leka - iOS Monorepo
# Copyright APF France handicap
# SPDX-License-Identifier: Apache-2.0
name: Linter - pre-commit hooks
on:
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
swift_format:
name: pre-commit hooks
runs-on: [self-hosted, iOS]
strategy:
fail-fast: false
matrix:
files: [changed_files, all_files]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
lfs: true
- name: Run pre-commit hooks --all-files
if: matrix.files == 'all_files'
run: |
pre-commit run --show-diff-on-failure --color=always --all-files
- name: Run pre-commit hooks --files
if: matrix.files == 'changed_files'
run: |
pre-commit run --show-diff-on-failure --color=always --files $(git diff --name-only -r HEAD^1 HEAD)