Fix: onPress callbacks are invoked for all nested Pressables #2796
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: Test TypeScript and Lint | |
on: | |
pull_request: | |
paths: | |
- 'src/**' | |
- '*' | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
check: | |
if: github.repository == 'software-mansion/react-native-gesture-handler' | |
runs-on: ubuntu-latest | |
concurrency: | |
group: static-root-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: Install node dependencies | |
run: yarn | |
- name: Check types | |
run: yarn tsc --noEmit | |
- name: Lint | |
run: yarn lint:js-root | |
- name: Check for circular dependencies | |
run: yarn circular-dependency-check |