Skip to content

Commit 01f3819

Browse files
committed
fix: implement the right package manager in actions
1 parent b003703 commit 01f3819

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/prs.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
- name: "Setup yarn"
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: "22"
20-
cache: "yarn"
19+
node-version: "24"
20+
cache: "pnpm"
2121
- name: Install dependencies
22-
run: yarn install --frozen-lockfile
22+
run: pnpm install --frozen-lockfile
2323
- name: Biome check
24-
run: yarn lint
24+
run: pnpm lint
2525
- name: Generate Next types
26-
run: yarn next typegen
26+
run: pnpm next typegen
2727
- name: Typescript check
28-
run: yarn type-check
28+
run: pnpm type-check

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"db:migrate": "drizzle-kit migrate"
1515
},
1616
"engines": {
17-
"node": "22"
17+
"node": "24"
1818
},
1919
"dependencies": {
2020
"@formatjs/intl-localematcher": "^0.7.3",

0 commit comments

Comments
 (0)