From a23a3a6bb43c722e4421d877f8095ff2494fc2ac Mon Sep 17 00:00:00 2001
From: Michael Kriese <michael.kriese@visualon.de>
Date: Mon, 14 Dec 2020 21:17:30 +0100
Subject: [PATCH] ci: remove yarn verbose flag (#8009)

---
 .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 d13857980d..7a4e89258d 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 --verbose
+        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 --verbose
+        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 --verbose
+        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 7cd14cfef5..3261b17d7b 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 --verbose
+        run: yarn install --frozen-lockfile
 
       - name: Build ${{ github.event.client_payload.version }}
         run: yarn build
-- 
GitLab