Skip to content

Commit

Permalink
chore: removes test step from husky pre-push (#5380)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
CrisTofani authored Jan 8, 2024
1 parent ccf5fc2 commit 3e9e9ee
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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."

0 comments on commit 3e9e9ee

Please sign in to comment.