-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
42 lines (33 loc) · 1009 Bytes
/
static-root-checks.yml
File metadata and controls
42 lines (33 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 24
uses: actions/setup-node@v6
with:
node-version: 24
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