Skip to content

Commit 4489f98

Browse files
committed
Add check-all script
1 parent 5085afc commit 4489f98

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install dependencies
2929
run: pnpm install
3030
- name: Check (format, lint, and types)
31-
run: "pnpm run '/*:check/'"
31+
run: "pnpm run check-all
3232
- name: Test
3333
run: pnpm -r test
3434
env:

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@
1717

1818
"format:check": "biome format .",
1919
"lint:check": "biome lint .",
20+
"type:check": "pnpm --filter '{packages/*}' exec tsc",
21+
"check-all": "pnpm run /.*:check/",
2022

2123
"build:packages": "pnpm --parallel --filter '{packages/*}' build",
22-
"publish:packages": "pnpm --parallel --filter '{packages/*}' publish --access=public",
23-
"type:check": "pnpm --filter '{packages/*}' exec tsc"
24+
"publish:packages": "pnpm --parallel --filter '{packages/*}' publish --access=public"
2425
},
2526
"keywords": [],
2627
"author": "",

0 commit comments

Comments
 (0)