We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ff4ae1 commit 20050d8Copy full SHA for 20050d8
1 file changed
.github/workflows/deploy-build.yml
@@ -18,13 +18,17 @@ jobs:
18
build-and-deploy:
19
runs-on: ubuntu-latest
20
steps:
21
- - name: Checkout your repo uwu
+ - name: Checkout your repo
22
uses: actions/checkout@v4
23
24
- - name: Install pnpm first :3
+ - name: Install pnpm first
25
uses: pnpm/action-setup@v4
26
+
27
+ - name: Setup Node.js (with pnpm caching)
28
+ uses: actions/setup-node@v4
29
with:
- version: 10
30
+ node-version: 24
31
+ cache: 'pnpm'
32
33
- name: Install dependencies
34
run: pnpm install --frozen-lockfile
0 commit comments