Skip to content

Commit 3a53d23

Browse files
committed
chore(release): use pnpm
1 parent 12f2ee7 commit 3a53d23

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,19 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 20
21-
- run: yarn install
21+
cache: 'pnpm'
22+
- name: Install pnpm
23+
uses: pnpm/action-setup@v4
24+
with:
25+
version: 10
26+
- name: Install dependencies
27+
run: pnpm install
2228
- name: Running tests
23-
run: yarn run test
29+
run: pnpm run test
2430
- name: Building
25-
run: yarn run build
31+
run: pnpm run build
2632
- name: Running audit
27-
run: yarn audit signatures
33+
run: pnpm audit
2834
- name: Semantic release
2935
run: npx semantic-release
3036
env:

0 commit comments

Comments
 (0)