We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a7d96b commit 513f016Copy full SHA for 513f016
1 file changed
.github/workflows/build.yml
@@ -9,16 +9,21 @@ jobs:
9
steps:
10
- name: Checkout 🛎️
11
uses: actions/checkout@master
12
+
13
+ - uses: pnpm/action-setup@v4
14
+ name: Install pnpm
15
+ with:
16
+ run_install: false
17
18
- name: Install Node.js
- uses: actions/setup-node@v3
19
+ uses: actions/setup-node@v4
20
with:
21
node-version: 22
- cache: "pnpm"
22
+ cache: 'pnpm'
23
24
- name: Install project dependencies
25
shell: bash
26
run: pnpm install
27
28
- name: Build 🏗️
- run: yarn build
29
+ run: pnpm build
0 commit comments