[iOS] App freezes with 100% CPU usage when a touchable is used inside a nested stack's headerLeft (repro provided + reproduces consistently)
#1569
This file contains hidden or 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: Check for platforms | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: platforms-${{ github.event.issue.number }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: 'software-mansion-labs/swmansion-bot' | |
| ref: stable | |
| - uses: actions/cache@v4 | |
| with: | |
| path: '**/node_modules' | |
| key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| - name: Install Actions | |
| run: yarn install | |
| - name: Platforms | |
| uses: ./platforms | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| platforms-section-header: Platforms | |
| platforms-comma-separated: true | |
| platforms-with-labels: '{"Android": "platform:android", "iOS": "platform:ios", "Web": "platform:web", "Windows": "platform:windows", "tvOS": "platform:tvos"}' |