From 08bb4a37dc2baae01e319a672c1832419570433e Mon Sep 17 00:00:00 2001 From: Russell Stern Date: Mon, 10 Aug 2026 13:36:41 -0400 Subject: [PATCH] Run bun install force in full checks --- scripts/full-checks.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/full-checks.sh b/scripts/full-checks.sh index 341c09b3..8eddf75c 100755 --- a/scripts/full-checks.sh +++ b/scripts/full-checks.sh @@ -5,6 +5,12 @@ set -e echo "🚀 Running full checks for CRE SDK TypeScript packages..." +# Re-install dependencies so that git-based packages (e.g. chain-selectors) +# are refreshed to the exact commit pinned in bun.lock. Without this, stale +# node_modules can cause generators to emit different output than CI. +echo "📦 Ensuring dependencies match the lockfile..." +bun install --force --frozen-lockfile + # Function to run command in a package directory run_in_package() { local package_dir=$1