From 9aeb8f552c293f04c0b28ad28a20aa13314c210b Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Tue, 27 Jan 2026 15:51:40 -0800 Subject: [PATCH] fix: allow non-frozen lockfile in CI for testing --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3169e94..34199ee 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -42,12 +42,12 @@ jobs: run: npm install -g tsx - name: Install workspace dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Install release script dependencies run: | cd scripts/release - pnpm install --ignore-workspace + pnpm install --no-frozen-lockfile --ignore-workspace - name: Run setup phase run: | @@ -94,7 +94,7 @@ jobs: - name: Build inspector frontend run: | - pnpm install + pnpm install --no-frozen-lockfile SANDBOX_AGENT_SKIP_INSPECTOR=1 pnpm --filter @sandbox-agent/inspector build - name: Set up Docker Buildx @@ -134,12 +134,12 @@ jobs: run: npm install -g tsx - name: Install workspace dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Install release script dependencies run: | cd scripts/release - pnpm install --ignore-workspace + pnpm install --no-frozen-lockfile --ignore-workspace - name: Install AWS CLI run: |