From e62137630579f00eccf65eb66bbbc56057ecb0f0 Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Tue, 26 Dec 2023 22:34:04 +0530 Subject: [PATCH] fix: failing client-build (#29878) --- .github/workflows/client-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 52a979534398..a021de0111fd 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -200,7 +200,9 @@ jobs: # Install all the dependencies - name: Install dependencies if: steps.run_result.outputs.run_result != 'success' - run: yarn install --immutable + run: | + npm install -g yarn + yarn install --immutable # Type checking before starting the build - name: Run type check