Skip to content

Commit 587fbe4

Browse files
committed
chore: update build and validation workflows to use npm instead of pnpm
1 parent e503cb0 commit 587fbe4

2 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
23-
cache: 'pnpm'
2423

2524
- name: Install dependencies
26-
run: pnpm install
25+
run: npm install
2726

2827
- name: Lint
29-
run: pnpm dlx prisma generate && pnpm run build
28+
run: npx prisma generate && npm run build

.github/workflows/validations.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
23-
cache: 'pnpm'
2423

2524
- name: Install dependencies
26-
run: pnpm install
25+
run: npm install
2726

2827
- name: Lint
29-
run: pnpm dlx prisma generate && pnpm run lint
28+
run: npm prisma generate && npm run lint

0 commit comments

Comments
 (0)