Skip to content

Commit 7b2fa9c

Browse files
paddymulclaude
andcommitted
ci: remove redundant pnpm workspace install from Playwright test jobs
The test scripts already run their own `pnpm install` in packages/buckaroo-js-core/. The CI-level workspace-wide `pnpm install --frozen-lockfile` was redundant. pnpm setup and cache are kept so the scripts' install is fast. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8897a64 commit 7b2fa9c

1 file changed

Lines changed: 3 additions & 12 deletions

File tree

.github/workflows/checks.yml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -254,14 +254,11 @@ jobs:
254254
uses: pnpm/action-setup@v4
255255
with:
256256
version: 9.10.0
257-
- name: Setup Node.js with pnpm cache
257+
- name: Setup Node.js
258258
uses: actions/setup-node@v4
259259
with:
260260
cache: 'pnpm'
261261
cache-dependency-path: 'packages/pnpm-lock.yaml'
262-
- name: Install pnpm dependencies
263-
working-directory: packages
264-
run: pnpm install --frozen-lockfile
265262
- name: Download build artifacts
266263
uses: actions/download-artifact@v4
267264
with:
@@ -294,14 +291,11 @@ jobs:
294291
uses: pnpm/action-setup@v4
295292
with:
296293
version: 9.10.0
297-
- name: Setup Node.js with pnpm cache
294+
- name: Setup Node.js
298295
uses: actions/setup-node@v4
299296
with:
300297
cache: 'pnpm'
301298
cache-dependency-path: 'packages/pnpm-lock.yaml'
302-
- name: Install pnpm dependencies
303-
working-directory: packages
304-
run: pnpm install --frozen-lockfile
305299
- name: Download build artifacts
306300
uses: actions/download-artifact@v4
307301
with:
@@ -368,14 +362,11 @@ jobs:
368362
uses: pnpm/action-setup@v4
369363
with:
370364
version: 9.10.0
371-
- name: Setup Node.js with pnpm cache
365+
- name: Setup Node.js
372366
uses: actions/setup-node@v4
373367
with:
374368
cache: 'pnpm'
375369
cache-dependency-path: 'packages/pnpm-lock.yaml'
376-
- name: Install pnpm dependencies
377-
working-directory: packages
378-
run: pnpm install --frozen-lockfile
379370
- name: Download build artifacts
380371
uses: actions/download-artifact@v4
381372
with:

0 commit comments

Comments
 (0)