Skip to content

Commit d6d70ea

Browse files
Harmeet SinghHarmeet Singh
authored andcommitted
fix the yml
1 parent 16204e2 commit d6d70ea

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,18 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12+
1213
- uses: actions/setup-node@v4
1314
with:
1415
node-version: '20'
15-
cache: 'pnpm' # <-- important
16+
cache: 'pnpm'
1617
cache-dependency-path: pnpm-lock.yaml
17-
- 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
1825
- run: pnpm install --frozen-lockfile
1926
- run: pnpm build

0 commit comments

Comments
 (0)