fix(iOS 18.1): Set explicit arrow edge position for popovers #985
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: CI workflow | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Scan unused code | |
runs-on: [ self-hosted, iOS ] | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: jdx/mise-action@v2 | |
with: | |
cache: false | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Periphery | |
id: periphery | |
run: ./scripts/periphery.sh --clean | |
- uses: mshick/add-pr-comment@v2 | |
with: | |
message: | | |
Found ${{ steps.periphery.outputs.unused_count }} unused code occurences | |
<details> | |
<summary>Expand</summary> | |
``` | |
${{ steps.periphery.outputs.detailed_output }} | |
``` | |
</details> |