[POC] Flip the Onyx subscription layer onto OnyxStore (engine swap) v2 #36914
Workflow file for this run
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: Verify Podfile | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| branches-ignore: [staging, production] | |
| paths: | |
| - ios/** | |
| - 'package.json' | |
| - 'package-lock.json' | |
| jobs: | |
| verify: | |
| if: github.actor != 'OSBotify' && github.actor != 'imgbot[bot]' | |
| runs-on: blacksmith-6vcpu-macos-latest | |
| steps: | |
| - name: Checkout | |
| # Upstream checkout on macOS - Blacksmith's git-mirror cache can't work there (see workflows/README.md) | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node | |
| uses: ./.github/actions/composite/setupNode | |
| - name: Verify podfile | |
| run: ./.github/scripts/verifyPodfile.sh |