From 4526367c3313c733528977deecb85208cb5d9b7f Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 14 Feb 2026 05:14:33 +0000 Subject: [PATCH] fix: remove unsupported --verbose flag from yarn install Yarn 4.x doesn't support the --verbose flag. Removed it from all workflows while keeping the debug output for git configuration. https://claude.ai/code/session_015R3U3kiprQiNTTNNt31Sg6 --- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22486592..b9bef369 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_TERMINAL_PROMPT: 0 - run: yarn install --immutable --verbose + run: yarn install --immutable - name: Build project run: yarn build diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d69c4dde..17791a95 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -55,7 +55,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_TERMINAL_PROMPT: 0 - run: yarn install --immutable --verbose + run: yarn install --immutable - name: Check linting run: yarn lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 50145574..5b9f9be1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -56,7 +56,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GIT_TERMINAL_PROMPT: 0 - run: yarn install --immutable --verbose + run: yarn install --immutable - name: Run tests run: yarn test \ No newline at end of file