From 07c9f772ab75992045256d99d66ca5e8ab210444 Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Fri, 23 Oct 2020 15:44:33 +0200
Subject: [PATCH] ci: do not use `--link-duplicates` (#7529)

---
 .github/workflows/build.yml       | 6 +++---
 .github/workflows/release-npm.yml | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 9420d9275f..3e84b2fa29 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -89,7 +89,7 @@ jobs:
         run: yarn cache clean
 
       - name: Installing dependencies
-        run: yarn install --frozen-lockfile --link-duplicates
+        run: yarn install --frozen-lockfile
 
       - name: Build
         run: yarn build
@@ -154,7 +154,7 @@ jobs:
         run: yarn cache clean
 
       - name: Installing dependencies
-        run: yarn install --frozen-lockfile --link-duplicates
+        run: yarn install --frozen-lockfile
 
       - name: Lint
         run: |
@@ -200,7 +200,7 @@ jobs:
           key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
 
       - name: Installing dependencies
-        run: yarn install --frozen-lockfile --link-duplicates
+        run: yarn install --frozen-lockfile
 
       - name: semantic-release
         if: github.ref == 'refs/heads/master'
diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml
index e0843d91e7..c5b6e90354 100644
--- a/.github/workflows/release-npm.yml
+++ b/.github/workflows/release-npm.yml
@@ -41,7 +41,7 @@ jobs:
           key: ${{ env.YARN_PACKAGE_CACHE_KEY }}-${{ runner.os }}-yarn_cache-${{ hashFiles('**/yarn.lock') }}
 
       - name: Installing dependencies
-        run: yarn install --frozen-lockfile --link-duplicates
+        run: yarn install --frozen-lockfile
 
       - name: Build ${{ github.event.client_payload.version }}
         run: yarn build
-- 
GitLab