Skip to content

Commit bef70ed

Browse files
committed
fix arch 2
1 parent 116dca2 commit bef70ed

File tree

1 file changed

+17
-19
lines changed

1 file changed

+17
-19
lines changed

.github/workflows/check-archs-consistency.yml

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,25 @@ on:
1515
workflow_dispatch:
1616

1717
jobs:
18-
main:
18+
check:
1919
if: github.repository == 'software-mansion/react-native-gesture-handler'
20+
runs-on: ubuntu-latest
21+
concurrency:
22+
group: check-archs-consistency-${{ github.ref }}
23+
cancel-in-progress: true
2024

21-
check:
22-
runs-on: ubuntu-latest
23-
concurrency:
24-
group: check-archs-consistency-${{ github.ref }}
25-
cancel-in-progress: true
25+
steps:
26+
- name: checkout
27+
uses: actions/checkout@v4
2628

27-
steps:
28-
- name: checkout
29-
uses: actions/checkout@v4
29+
- name: Use Node.js 24
30+
uses: actions/setup-node@v6
31+
with:
32+
node-version: 24
33+
cache: yarn
3034

31-
- name: Use Node.js 24
32-
uses: actions/setup-node@v6
33-
with:
34-
node-version: 24
35-
cache: yarn
35+
- name: Install node dependencies
36+
run: yarn
3637

37-
- name: Install node dependencies
38-
run: yarn
39-
40-
- name: Check Android Paper & Fabric generated interfaces consistency
41-
run: yarn workspace react-native-gesture-handler architectures-consistency-check
38+
- name: Check Android Paper & Fabric generated interfaces consistency
39+
run: yarn workspace react-native-gesture-handler architectures-consistency-check

0 commit comments

Comments
 (0)