Skip to content

Commit 5b1a6cd

Browse files
committed
chore: Install pnpm
1 parent c45a4af commit 5b1a6cd

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/build.yml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ jobs:
2222
shell: bash
2323
run: echo "branch=$(echo ${GITHUB_REF##*/})" >> $GITHUB_OUTPUT
2424
id: extract-branch
25+
- name: Install pnpm
26+
uses: pnpm/action-setup@v4
2527
- name: Install Node.js
2628
uses: actions/setup-node@v4
2729
with:

.github/workflows/publish-to-github.yml

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010
# Setup .npmrc file to publish to GitHub Packages
11+
- name: Install pnpm
12+
uses: pnpm/action-setup@v4
1113
- name: Install Node.js
1214
uses: actions/setup-node@v4
1315
with:

.github/workflows/publish-to-npm.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10+
- name: Install pnpm
11+
uses: pnpm/action-setup@v4
1012
- name: Install Node.js
1113
uses: actions/setup-node@v4
1214
with:

0 commit comments

Comments
 (0)