From 478083cfe0c962e31cb0c47d05e8122deaa6d95d Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Tue, 4 Jun 2024 20:41:40 -0400 Subject: [PATCH] Fixed Corepack Issues in Workflows --- .github/workflows/eslint.yml | 3 +++ .github/workflows/prettier.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index e68a5c3..91a37c7 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -20,6 +20,9 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Configure Corepack + run: corepack enable + - name: Install Dependencies run: yarn install diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index ee967ff..d2a5386 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -19,6 +19,9 @@ jobs: with: node-version: '21' + - name: Configure Corepack + run: corepack enable + - name: Install dependencies run: yarn install --frozen-lockfile