Skip to content

Commit

Permalink
ci: add verbose to yarn install (#7858)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice authored Dec 2, 2020
1 parent 70fc7e1 commit bf252be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bf252be

Please sign in to comment.