Skip to content

Commit

Permalink
fix: ci not running vue-tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
BrewingWeasel committed Aug 22, 2024
1 parent 27d00ec commit ad4ccae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ad4ccae

Please sign in to comment.