From 3e9e9eea96c44e8c077b3152003b98728febabff Mon Sep 17 00:00:00 2001 From: Cristiano Tofani Date: Mon, 8 Jan 2024 16:18:06 +0100 Subject: [PATCH] chore: removes test step from husky pre-push (#5380) ## Short description This PR aims to remove the test step on pre-push step ## List of changes proposed in this pull request - .husky/pre-push ## How to test Check before pushing a new commit --- .husky/pre-push | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.husky/pre-push b/.husky/pre-push index 827061b7d5c..f86c2212443 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -7,6 +7,10 @@ unstagedCount=`echo "$unstagedFiles" | wc -l | sed 's/ //g'` echo "Current modified files ($unstagedCount):" echo "$unstagedFiles" +# Compile the project +echo "๐Ÿ”จ compiling..." +yarn tsc:noemit + # Run lintier echo "๐Ÿงน runnning linter..." yarn lint-autofix @@ -32,13 +36,5 @@ if [ -n "$(git status --porcelain)" ]; then fi fi -# Compile the project -echo "๐Ÿ”จ compiling..." -yarn tsc:noemit - -# Run tests -echo "๐Ÿงช testing..." -yarn test:dev - echo "๐Ÿš€ pushing..." echo "โœจ Done." \ No newline at end of file