We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b668f commit c27a355Copy full SHA for c27a355
.github/workflows/ci.yml
@@ -21,14 +21,26 @@ jobs:
21
uses: ./.github/actions/setup
22
23
- name: Lint files
24
- run: yarn lint
+ run: |
25
+ echo "🔍 Linting monorepo packages..."
26
+ yarn lint
27
+ echo "🔍 Linting bare React Native example app..."
28
+ cd apps/bare_rn
29
30
+ cd ../../
31
32
- name: Typecheck files
33
run: |
34
+ echo "🔍 Preparing react-native-executorch package..."
35
cd packages/react-native-executorch
36
yarn prepare
37
cd ../../
38
+ echo "🔍 Typechecking monorepo packages..."
39
yarn typecheck
40
+ echo "🔍 Typechecking bare React Native example app..."
41
42
+ yarn typecheck
43
44
45
build-library:
46
runs-on: ubuntu-latest
0 commit comments