We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16204e2 commit d6d70eaCopy full SHA for d6d70ea
1 file changed
.github/workflows/ci.yml
@@ -9,11 +9,18 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v4
12
+
13
- uses: actions/setup-node@v4
14
with:
15
node-version: '20'
- cache: 'pnpm' # <-- important
16
+ cache: 'pnpm'
17
cache-dependency-path: pnpm-lock.yaml
- - run: corepack enable
18
19
+ # 👇 installs pnpm on the runner
20
+ - uses: pnpm/action-setup@v4
21
+ with:
22
+ version: 9
23
24
+ - run: pnpm --version
25
- run: pnpm install --frozen-lockfile
26
- run: pnpm build
0 commit comments