ci: add tsc check on pre-push hook

This commit is contained in:
p-sw 2024-07-20 02:40:59 +09:00
parent 9113b8e095
commit 6dcf44fc60

View File

@ -7,4 +7,12 @@ pre-push:
commands:
biome_check:
glob: "*.{ts,tsx,json}"
run: yarn biome check --no-errors-on-unmatched --files-ignore-unknown=true {staged_files}
run: yarn biome check --no-errors-on-unmatched --files-ignore-unknown=true {all_files}
react_tsc:
glob: "packages/react/*.{ts,tsx}"
root: "packages/react/"
run: yarn tsc
cli_tsc:
glob: "packages/cli/*.{ts,tsx}"
root: "packages/cli/"
run: yarn tsc