There was an error while loading. Please reload this page.
1 parent 0deb1ff commit 15e805eCopy full SHA for 15e805e
1 file changed
.github/workflows/deploy.yml
@@ -18,24 +18,24 @@ concurrency:
18
jobs:
19
build:
20
runs-on: ubuntu-latest
21
- env:
22
- CI: true
23
steps:
24
- name: Checkout
25
uses: actions/checkout@v4
26
27
- name: Setup Node.js
28
uses: actions/setup-node@v4
29
with:
30
- node-version: '20'
+ node-version: 20
31
cache: 'pnpm'
32
33
- - name: Enable Corepack & pnpm
+ - name: Enable Corepack (for pnpm)
34
run: |
35
corepack enable
36
corepack prepare pnpm@9 --activate
37
pnpm --version
38
- pnpm config set store-dir ~/.pnpm-store
+
+ - name: Install deps (root, workspace)
+ run: pnpm install --frozen-lockfile
39
40
- name: Cache pnpm store
41
uses: actions/cache@v4
0 commit comments