move typechecking to lint-format (#2526)

This commit is contained in:
Sam Freund
2026-06-29 09:01:33 -07:00
committed by GitHub
parent 6155fb9534
commit bd8fa28ab7
2 changed files with 9 additions and 21 deletions

View File

@@ -109,3 +109,12 @@ jobs:
echo "::error ::Linting failed. See https://docs.photonvision.org/en/latest/docs/contributing/linting.html"
exit $exit_code
fi
- name: Run Typechecking
run: |
set +e
pnpm run type-check
exit_code=$?
if test "$exit_code" -ne "0"; then
echo "::error ::Linting failed. See https://docs.photonvision.org/en/latest/docs/contributing/linting.html"
exit $exit_code
fi