Skip to content

Add checks for the same instance of handler usage across multiple GestureDetectors #132

Add checks for the same instance of handler usage across multiple GestureDetectors

Add checks for the same instance of handler usage across multiple GestureDetectors #132

Workflow file for this run

name: Check documentation
on:
pull_request:
paths:
- 'docs/**'
workflow_dispatch:
jobs:
check:
if: github.repository == 'software-mansion/react-native-gesture-handler'
runs-on: ubuntu-latest
concurrency:
group: docs-check-${{ github.ref }}
cancel-in-progress: true
env:
WORKING_DIRECTORY: docs
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
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn
- name: Generate docs
working-directory: ${{ env.WORKING_DIRECTORY }}
run: yarn build