0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 17:24:15 +01:00
posthog/bin/check-typescript-strict

24 lines
728 B
Plaintext
Raw Normal View History

#!/bin/bash
echo "Refreshing Kea logic types and running the TypeScript compiler in dry mode..."
echo
IGNORED_SPECS=('Type.ts') # *Type.ts* files are ignored, as they are generally created by kea-typegen
yarn typegen:write &> /dev/null
ALL_ERRORS=$(yarn typescript:check --strict 2> /dev/null | grep error | grep frontend)
ERRORS_COUNT=$(echo "${ALL_ERRORS}" | wc -l)
NEW_ERRORS=$(echo "${ALL_ERRORS}" | grep --invert-match --fixed-strings ${IGNORED_SPECS})
NEW_ERRORS_COUNT="$(echo "${NEW_ERRORS}" | wc -l)"
if test -z "${NEW_ERRORS}"
then
echo "No TypeScript errors found in this PR! 🚀"
exit 0
else
echo "Found ${NEW_ERRORS_COUNT} TypeScript errors in this PR! 💥"
echo "${NEW_ERRORS}"
exit 1
fi