Skip to content

Commit c27a355

Browse files
committed
chore: include bare React Native example app in CI lint and typecheck workflows
1 parent 00b668f commit c27a355

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,26 @@ jobs:
2121
uses: ./.github/actions/setup
2222

2323
- name: Lint files
24-
run: yarn lint
24+
run: |
25+
echo "🔍 Linting monorepo packages..."
26+
yarn lint
27+
echo "🔍 Linting bare React Native example app..."
28+
cd apps/bare_rn
29+
yarn lint
30+
cd ../../
2531
2632
- name: Typecheck files
2733
run: |
34+
echo "🔍 Preparing react-native-executorch package..."
2835
cd packages/react-native-executorch
2936
yarn prepare
3037
cd ../../
38+
echo "🔍 Typechecking monorepo packages..."
3139
yarn typecheck
40+
echo "🔍 Typechecking bare React Native example app..."
41+
cd apps/bare_rn
42+
yarn typecheck
43+
cd ../../
3244
3345
build-library:
3446
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)