-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
33 lines (32 loc) · 899 Bytes
/
check-archs-consistency.yml
File metadata and controls
33 lines (32 loc) · 899 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
name: Test consistency between Paper & Fabric
on:
pull_request:
branches:
- main
paths:
- packages/react-native-gesture-handler/src/specs/**
- packages/react-native-gesture-handler/package.json
- apps/BasicExample/package.json
- .github/workflows/check-archs-consistency.yml
push:
branches:
- main
workflow_dispatch:
jobs:
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 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Install node dependencies
run: yarn
- name: Check Android Paper & Fabric generated interfaces consistency
run: yarn architectures-consistency-check