Skip to content

Commit b6cea77

Browse files
committed
workflow: manage playground dependency installation separately
1 parent f4f0e43 commit b6cea77

File tree

5 files changed

+28
-2871
lines changed

5 files changed

+28
-2871
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ jobs:
3939
with:
4040
node-version: ${{ matrix.node-version }}
4141
cache: 'pnpm'
42-
- run: pnpm install --no-frozen-lockfile
42+
- run: pnpm install
4343
- run: pnpm pretest
44-
# Rerun install to ensure the dependencies in the playground apps are resolved correctly
45-
- run: pnpm install --no-frozen-lockfile
44+
- name: Install Playground Dependencies
45+
working-directory: ./playground
46+
run: pnpm install --no-frozen-lockfile
4647
- run: pnpm test

playground

0 commit comments

Comments
 (0)