From ad4ccae76ae1d3f4bf6e259e4faff5f336e478d0 Mon Sep 17 00:00:00 2001 From: Finn Brewer Date: Wed, 21 Aug 2024 23:04:44 -0700 Subject: [PATCH] fix: ci not running vue-tsc --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) 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