diff --git a/justfile b/justfile index bb44ca2..d31623b 100644 --- a/justfile +++ b/justfile @@ -22,12 +22,15 @@ test: cargo test rust-check: test lint +ts-check: + pnpm vue-tsc ci-check: actionlint check: rust-check + ts-check pre-commit: #!/usr/bin/env sh @@ -36,6 +39,9 @@ pre-commit: if (echo $newfiles | grep ".rs" ); then just rust-check fi + if (echo $newfiles | grep ".vue" ); then + just ts-check + fi if (echo $newfiles | grep ".github" ); then just ci-check fi