Fix SSR error with useLayoutEffect (#3752)
#1139
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 | ||
|
Check failure on line 1 in .github/workflows/check-archs-consistency.yml
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - .github/workflows/check-archs-consistency.yml | ||
| - packages/react-native-gesture-handler/src/specs/** | ||
| - packages/react-native-gesture-handler/package.json | ||
| - apps/basic-example/package.json | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| jobs: | ||
| if: github.repository == 'software-mansion/react-native-gesture-handler' | ||
| 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 24 | ||
| uses: actions/setup-node@v6 | ||
| with: | ||
| node-version: 24 | ||
| cache: yarn | ||
| - name: Install node dependencies | ||
| run: yarn | ||
| - name: Check Android Paper & Fabric generated interfaces consistency | ||
| run: yarn workspace react-native-gesture-handler architectures-consistency-check | ||