Skip to content

Complete Pressable refactor. #3292

Complete Pressable refactor.

Complete Pressable refactor. #3292

name: Test TypeScript and Lint
on:
pull_request:
paths:
- packages/react-native-gesture-handler/src/**
- packages/react-native-gesture-handler/*
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@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install node dependencies
run: yarn --immutable
- name: Check types
run: yarn workspace react-native-gesture-handler ts-check
- name: Lint
run: yarn workspace react-native-gesture-handler lint-js
- name: Check for circular dependencies
run: yarn workspace react-native-gesture-handler circular-dependency-check