From f761d47e2e5fbb485e0fb68c302484bab8e1340d Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Thu, 2 Jan 2025 15:05:02 +0000 Subject: [PATCH 1/2] fix: install packages with no frozen lockfile flag --- scripts/smokeTests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/smokeTests.sh b/scripts/smokeTests.sh index 01042981258..084057d903a 100755 --- a/scripts/smokeTests.sh +++ b/scripts/smokeTests.sh @@ -36,7 +36,7 @@ cd "$PROJECT_DIR" cp .env.example .env -pnpm install -r +pnpm install -r --no-frozen-lockfile pnpm build From b1da5acd97e335409631f1eb6ee084602b71a4e4 Mon Sep 17 00:00:00 2001 From: Shakker Nerd Date: Thu, 2 Jan 2025 15:06:39 +0000 Subject: [PATCH 2/2] chore: clean before installing --- scripts/smokeTests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/smokeTests.sh b/scripts/smokeTests.sh index 084057d903a..388e7fb439d 100755 --- a/scripts/smokeTests.sh +++ b/scripts/smokeTests.sh @@ -36,6 +36,8 @@ cd "$PROJECT_DIR" cp .env.example .env +pnpm clean + pnpm install -r --no-frozen-lockfile pnpm build