Skip to content

Commit 5673eed

Browse files
committed
add pnpm step to workflows
1 parent 7848679 commit 5673eed

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/build.yml

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
steps:
1111
- uses: actions/checkout@v4
12+
- name: Install pnpm
13+
uses: pnpm/action-setup@v4
14+
with:
15+
version: 9
1216
- uses: actions/setup-node@v4
1317
with:
1418
node-version: ${{ matrix.node }}

.github/workflows/publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v4
15+
- name: Install pnpm
16+
uses: pnpm/action-setup@v4
17+
with:
18+
version: 9
1519
- uses: actions/setup-node@v4
1620
with:
1721
node-version: ${{ matrix.node }}

0 commit comments

Comments
 (0)