From da9b31e393ed002ccea4268235ad98ea79410b93 Mon Sep 17 00:00:00 2001 From: Devin Foley Date: Fri, 20 Mar 2026 14:20:46 -0700 Subject: [PATCH] fix(ci): use --frozen-lockfile in e2e workflow Align with e2e.yml and ensure CI tests exactly the committed dependency tree. The pr-policy job already blocks lockfile changes in PRs, so frozen-lockfile is safe here. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/pr-e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-e2e.yml b/.github/workflows/pr-e2e.yml index 599b3649..47046932 100644 --- a/.github/workflows/pr-e2e.yml +++ b/.github/workflows/pr-e2e.yml @@ -30,7 +30,7 @@ jobs: cache: pnpm - name: Install dependencies - run: pnpm install --no-frozen-lockfile + run: pnpm install --frozen-lockfile - name: Build run: pnpm build