]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
ci: add a dedupe step in playground dep installation
authorHaoqun Jiang <haoqunjiang@gmail.com>
Mon, 28 Jul 2025 08:35:45 +0000 (16:35 +0800)
committerHaoqun Jiang <haoqunjiang@gmail.com>
Mon, 28 Jul 2025 08:35:45 +0000 (16:35 +0800)
.github/workflows/ci.yml

index cf12b9ae6a3ec8bd343e157ca0795052df113015..6c1140532968f8d8593b768768941b1c110cbe45 100644 (file)
@@ -83,7 +83,9 @@ jobs:
         run: pnpm install
       - name: Install dependencies in playground
         working-directory: ./playground
-        run: pnpm install --no-frozen-lockfile --ignore-scripts
+        run: |
+          pnpm install --no-frozen-lockfile --ignore-scripts
+          pnpm dedupe --ignore-scripts
 
       - name: Run build script in playground
         working-directory: ./playground
@@ -125,7 +127,9 @@ jobs:
         run: pnpm install
       - name: Install dependencies in playground
         working-directory: ./playground
-        run: pnpm install --no-frozen-lockfile --ignore-scripts
+        run: |
+          pnpm install --no-frozen-lockfile --ignore-scripts
+          pnpm dedupe --ignore-scripts
         env:
           # Skip Cypress installation temporarily, we'll install it later with cache
           CYPRESS_INSTALL_BINARY: 0