From 00b47f030ed414bb70d32651dee43458cab254a5 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Wed, 22 Dec 2021 14:26:03 -0500 Subject: [PATCH] [chore] run pnpm with --frozen-lockfile in pre-push hook (#3085) --- .githooks/pre-push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 0373f4c72ed0..0c7fbde2f23d 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -2,6 +2,6 @@ set -e -pnpm i +pnpm install --frozen-lockfile pnpm lint pnpm check