We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4815b0b + c98ebd4 commit 25deddbCopy full SHA for 25deddb
.github/workflows/ci.yml
@@ -23,8 +23,10 @@ jobs:
23
node-version: 20
24
cache: pnpm
25
- run: pnpm install
26
- - name: Type Check
+ - name: Type Check (Mobile)
27
run: npx tsc --noEmit
28
+ - name: Type Check (Docs)
29
+ run: cd apps/docs && npx tsc --noEmit
30
- name: Lint
31
run: npx eslint . --ext .ts,.tsx
32
- name: Test
tsconfig.json
@@ -13,5 +13,9 @@
13
"**/*.ts",
14
"**/*.tsx",
15
"nativewind-env.d.ts"
16
+ ],
17
+ "exclude": [
18
+ "node_modules",
19
+ "./apps"
20
]
21
}
0 commit comments