Skip to content

Commit 3af6a78

Browse files
committed
ci: add a dedupe step in playground dep installation
1 parent 9a11773 commit 3af6a78

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ jobs:
8383
run: pnpm install
8484
- name: Install dependencies in playground
8585
working-directory: ./playground
86-
run: pnpm install --no-frozen-lockfile --ignore-scripts
86+
run: |
87+
pnpm install --no-frozen-lockfile --ignore-scripts
88+
pnpm dedupe --ignore-scripts
8789
8890
- name: Run build script in playground
8991
working-directory: ./playground
@@ -125,7 +127,9 @@ jobs:
125127
run: pnpm install
126128
- name: Install dependencies in playground
127129
working-directory: ./playground
128-
run: pnpm install --no-frozen-lockfile --ignore-scripts
130+
run: |
131+
pnpm install --no-frozen-lockfile --ignore-scripts
132+
pnpm dedupe --ignore-scripts
129133
env:
130134
# Skip Cypress installation temporarily, we'll install it later with cache
131135
CYPRESS_INSTALL_BINARY: 0

0 commit comments

Comments
 (0)