Skip to content

Commit 18eee69

Browse files
committed
Update GitHub Actions workflows to use pnpm for dependency installation and modify release command from yarn to pnpm.
1 parent cb5bd23 commit 18eee69

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ jobs:
2020
- name: Install dependencies
2121
uses: pnpm/action-setup@v4
2222

23+
- name: Install
24+
run: |
25+
pnpm install
26+
2327
- name: Create Release
2428
env:
2529
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2630
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2731
run: |
28-
yarn release
32+
pnpm run release

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
- name: Install dependencies
2020
uses: pnpm/action-setup@v4
2121

22+
- name: Install
23+
run: |
24+
pnpm install
25+
2226
- name: Test
2327
run: |
2428
pnpm run test

0 commit comments

Comments
 (0)