Skip to content

Commit 513f016

Browse files
committed
update install setup flow
1 parent 6a7d96b commit 513f016

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,21 @@ jobs:
99
steps:
1010
- name: Checkout 🛎️
1111
uses: actions/checkout@master
12+
13+
- uses: pnpm/action-setup@v4
14+
name: Install pnpm
15+
with:
16+
run_install: false
1217

1318
- name: Install Node.js
14-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
1520
with:
1621
node-version: 22
17-
cache: "pnpm"
22+
cache: 'pnpm'
1823

1924
- name: Install project dependencies
2025
shell: bash
2126
run: pnpm install
2227

2328
- name: Build 🏗️
24-
run: yarn build
29+
run: pnpm build

0 commit comments

Comments
 (0)