Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/full-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading