feat(iOS): add pageSheet presentation for native-stack (#2793) #430
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: Test consistency between Paper & Fabric | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/fabric/**' | |
| - 'android/src/paper/java/com/facebook/react/viewmanagers/**' | |
| - '.github/workflows/check-archs-consistency.yml' | |
| - 'scripts/codegen-check-consistency.js' | |
| - 'scripts/codegen-utils.js' | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: check-archs-consistency-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js 18 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: 'yarn' | |
| - name: Install node dependencies | |
| run: yarn | |
| - name: Check Android Paper & Fabric generated interfaces consistency | |
| run: yarn architectures-consistency-check |