From 18a5085cc40b88dd44c5c4e893a6d673dd69224c Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Thu, 9 Nov 2023 01:36:32 +0330 Subject: [PATCH] chore(package): fix nodejs corepack --- .github/workflows/build-lint.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-lint.yaml b/.github/workflows/build-lint.yaml index 3e8c8fe..b0e21c7 100644 --- a/.github/workflows/build-lint.yaml +++ b/.github/workflows/build-lint.yaml @@ -33,8 +33,12 @@ jobs: node-version: ${{ env.NODE_VERSION }} # cache: yarn + - name: 🏗 Setup nodejs corepack + run: corepack enable + # corepack prepare yarn@stable --activate + - name: 🏗 Install dependencies - run: yarn --version && yarn install --immutable + run: yarn install --immutable - name: 🚀 Build Typescript run: yarn build