From 4948248b4049606e844b98c1079d4de0e7be62cf Mon Sep 17 00:00:00 2001 From: Myles Scolnick Date: Tue, 12 May 2026 12:10:22 -0400 Subject: [PATCH] chore(ci): add --ignore-scripts to pnpm install --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c475da6..2148ebf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: node-version: lts/* - name: Install - run: pnpm install + run: pnpm install --ignore-scripts - name: Lint run: pnpm lint @@ -43,7 +43,7 @@ jobs: node-version: lts/* - name: Install - run: pnpm install + run: pnpm install --ignore-scripts - name: Typecheck run: pnpm typecheck @@ -62,7 +62,7 @@ jobs: node-version: lts/* - name: Install - run: pnpm install + run: pnpm install --ignore-scripts - name: Build run: pnpm build