From 3a78d3b0eeff1c9e2884efc49e82a7b0001d4559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Mon, 12 Sep 2022 10:58:49 +0200 Subject: [PATCH] fix(repo): ensure husky checks are respected on commit (#11973) --- .husky/pre-push | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.husky/pre-push b/.husky/pre-push index 0bb4416778..3859fb6ad4 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,6 +1,6 @@ #!/usr/bin/env sh -yarn check-lock-files -yarn check-commit -yarn documentation +yarn check-lock-files && +yarn check-commit && +yarn documentation && yarn pretty-quick --check