From bf252be7afda4b9a4c268772816c10daf20824d7 Mon Sep 17 00:00:00 2001 From: Michael Kriese <michael.kriese@visualon.de> Date: Wed, 2 Dec 2020 07:07:59 +0100 Subject: [PATCH] ci: add verbose to yarn install (#7858) --- .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 7a4e89258d..d13857980d 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 + run: yarn install --frozen-lockfile --verbose - name: Build run: yarn build @@ -154,7 +154,7 @@ jobs: run: yarn cache clean - name: Installing dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --verbose - 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 + run: yarn install --frozen-lockfile --verbose - name: semantic-release if: github.ref == 'refs/heads/master' diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index 3261b17d7b..7cd14cfef5 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 + run: yarn install --frozen-lockfile --verbose - name: Build ${{ github.event.client_payload.version }} run: yarn build -- GitLab