From 2187ca78e47e7fb35e0ea1fd216a55202e452fe6 Mon Sep 17 00:00:00 2001 From: JeelRajodiya Date: Tue, 4 Mar 2025 20:43:00 +0530 Subject: [PATCH] feat: replace Corepack enable step with direct PNPM installation in link-checker workflow --- .github/workflows/link-checker.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/link-checker.yml b/.github/workflows/link-checker.yml index f4764b6..91d9c55 100644 --- a/.github/workflows/link-checker.yml +++ b/.github/workflows/link-checker.yml @@ -18,14 +18,15 @@ jobs: with: submodules: 'recursive' - - name: Corepack enable - run: corepack enable - - name: Set up Node.js uses: actions/setup-node@v4 with: node-version: '20' + # Replace corepack with direct PNPM installation + - name: Install pnpm + run: npm install -g pnpm + - name: Get Token uses: actions/create-github-app-token@v1 id: get_workflow_token