Skip to content

Commit 2187ca7

Browse files
committed
feat: replace Corepack enable step with direct PNPM installation in link-checker workflow
1 parent 45fca0b commit 2187ca7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/link-checker.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ jobs:
1818
with:
1919
submodules: 'recursive'
2020

21-
- name: Corepack enable
22-
run: corepack enable
23-
2421
- name: Set up Node.js
2522
uses: actions/setup-node@v4
2623
with:
2724
node-version: '20'
2825

26+
# Replace corepack with direct PNPM installation
27+
- name: Install pnpm
28+
run: npm install -g pnpm
29+
2930
- name: Get Token
3031
uses: actions/create-github-app-token@v1
3132
id: get_workflow_token

0 commit comments

Comments
 (0)