✨ (LekaApp): Triggers reinforcer on editing care receiver reinforcers #2919
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
# Leka - iOS Monorepo | |
# Copyright APF France handicap | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Tuist - Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
TUIST_TURN_OFF_LINTERS: TRUE | |
jobs: | |
build: | |
name: build | |
runs-on: [self-hosted, iOS] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 # shallow clone | |
lfs: true | |
- name: Setup mise | |
run: | | |
echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH | |
- name: tuist fetch | |
run: | | |
TUIST_TURN_OFF_LINTERS=TRUE tuist fetch | |
- name: tuist generate | |
run: | | |
TUIST_TURN_OFF_LINTERS=TRUE tuist generate -n | |
- name: tuist build | |
run: | | |
tuist build |