fix: allow non-frozen lockfile in CI for testing

This commit is contained in:
Nathan Flurry 2026-01-27 15:51:40 -08:00
parent 39c3559c9f
commit 9aeb8f552c

View file

@ -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: |