Skip to content

Commit 73dcfc1

Browse files
committed
📝 Update docs for pnpm workflows
Move repo docs, SDK dev docs, CLI help examples, reporter snippets, and test fixtures from npm/npx commands to pnpm equivalents. Keep npm references only where they describe the npm registry, publish/version release steps, compatibility history, or package-lock handling for user projects.
1 parent dc3bd9e commit 73dcfc1

50 files changed

Lines changed: 239 additions & 232 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codex/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[mcp_servers.playwright]
2-
args = ["@playwright/mcp@latest"]
3-
command = "npx"
2+
args = ["pnpm", "dlx", "@playwright/mcp@latest"]
3+
command = "corepack"

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: 22
2121

2222
- name: Install pnpm
23-
run: npm install -g pnpm@11.3.0
23+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
2424

2525
- name: Install dependencies
2626
run: pnpm install --frozen-lockfile
@@ -50,7 +50,7 @@ jobs:
5050
node-version: ${{ matrix.node-version }}
5151

5252
- name: Install pnpm
53-
run: npm install -g pnpm@11.3.0
53+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
5454

5555
- name: Install dependencies
5656
run: pnpm install --frozen-lockfile

.github/workflows/release-beta.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: npm install -g npm@11.5.1
4444

4545
- name: Install pnpm
46-
run: npm install -g pnpm@11.3.0
46+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4747

4848
- name: Install dependencies
4949
run: pnpm install --frozen-lockfile

.github/workflows/release-ember-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: npm install -g npm@11.5.1
4343

4444
- name: Install pnpm
45-
run: npm install -g pnpm@11.3.0
45+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4646

4747
- name: Configure git
4848
run: |

.github/workflows/release-static-site-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: npm install -g npm@11.5.1
3838

3939
- name: Install pnpm
40-
run: npm install -g pnpm@11.3.0
40+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4141

4242
- name: Configure git
4343
run: |

.github/workflows/release-storybook-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: npm install -g npm@11.5.1
3838

3939
- name: Install pnpm
40-
run: npm install -g pnpm@11.3.0
40+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4141

4242
- name: Configure git
4343
run: |

.github/workflows/release-vitest-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: npm install -g npm@11.5.1
3838

3939
- name: Install pnpm
40-
run: npm install -g pnpm@11.3.0
40+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4141

4242
- name: Configure git
4343
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: npm install -g npm@11.5.1
3939

4040
- name: Install pnpm
41-
run: npm install -g pnpm@11.3.0
41+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
4242

4343
- name: Install dependencies
4444
run: pnpm install --frozen-lockfile

.github/workflows/reporter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
node-version: 22
2222

2323
- name: Install pnpm
24-
run: npm install -g pnpm@11.3.0
24+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
2525

2626
- name: Install dependencies
2727
run: pnpm install --frozen-lockfile

.github/workflows/sdk-e2e.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 22
2323

2424
- name: Install pnpm
25-
run: npm install -g pnpm@11.3.0
25+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
2626

2727
- name: Install CLI dependencies
2828
run: pnpm install --frozen-lockfile
@@ -80,7 +80,7 @@ jobs:
8080
node-version: 22
8181

8282
- name: Install pnpm
83-
run: npm install -g pnpm@11.3.0
83+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
8484

8585
- name: Install CLI dependencies
8686
run: pnpm install --frozen-lockfile
@@ -139,7 +139,7 @@ jobs:
139139
node-version: 22
140140

141141
- name: Install pnpm
142-
run: npm install -g pnpm@11.3.0
142+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
143143

144144
- name: Install CLI dependencies
145145
run: pnpm install --frozen-lockfile
@@ -215,7 +215,7 @@ jobs:
215215
node-version: 22
216216

217217
- name: Install pnpm
218-
run: npm install -g pnpm@11.3.0
218+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
219219

220220
- name: Install CLI dependencies
221221
run: pnpm install --frozen-lockfile
@@ -284,7 +284,7 @@ jobs:
284284
node-version: 22
285285

286286
- name: Install pnpm
287-
run: npm install -g pnpm@11.3.0
287+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
288288

289289
- name: Install CLI dependencies
290290
run: pnpm install --frozen-lockfile
@@ -349,7 +349,7 @@ jobs:
349349
node-version: 22
350350

351351
- name: Install pnpm
352-
run: npm install -g pnpm@11.3.0
352+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
353353

354354
- name: Install CLI dependencies
355355
run: pnpm install --frozen-lockfile
@@ -403,7 +403,7 @@ jobs:
403403
node-version: 22
404404

405405
- name: Install pnpm
406-
run: npm install -g pnpm@11.3.0
406+
run: corepack enable && corepack prepare pnpm@11.3.0 --activate
407407

408408
- name: Install CLI dependencies
409409
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)