Skip to content

Commit b374433

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

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/prs.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ jobs:
1313
- uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
16-
- name: "Setup yarn"
16+
- name: "Setup pnpm"
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: "22"
20-
cache: "yarn"
19+
node-version: "24"
2120
- name: Install dependencies
22-
run: yarn install --frozen-lockfile
21+
run: pnpm install --frozen-lockfile
2322
- name: Biome check
24-
run: yarn lint
23+
run: pnpm lint
2524
- name: Generate Next types
26-
run: yarn next typegen
25+
run: pnpm next typegen
2726
- name: Typescript check
28-
run: yarn type-check
27+
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)