From 90734e306cfdb2ab9c4a9cd5cda3d4274a9b27ce Mon Sep 17 00:00:00 2001 From: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com> Date: Wed, 16 Nov 2022 17:38:25 -0800 Subject: [PATCH] Add NPM_CONFIG_LOGLEVEL=verbose to CI --- .github/workflows/benchmark.yml | 2 ++ .github/workflows/ci.yml | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index ce1088188d..91722f19a2 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -45,6 +45,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - name: Build typescript run: yarn generate diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c25c63a8b3..8d676a4c4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - run: yarn generate - run: yarn lint @@ -63,6 +65,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - run: yarn generate - run: yarn prepare-beta-build @@ -102,6 +106,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - run: yarn generate - run: yarn prepare-beta-build @@ -142,6 +148,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - run: yarn generate - run: yarn test-node @@ -193,6 +201,8 @@ jobs: - name: Install Desktop node_modules if: steps.cache-desktop-modules.outputs.cache-hit != 'true' run: yarn install --frozen-lockfile + env: + NPM_CONFIG_LOGLEVEL: verbose - name: Build typescript run: yarn generate