Skip to content

Commit da1d380

Browse files
committed
fix: replace pnpm commands with npm for dependency installation and script execution
1 parent aa0fcd5 commit da1d380

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/types.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,17 @@ jobs:
2424
with:
2525
node-version: '20'
2626

27-
- name: Install pnpm
28-
run: npm install -g pnpm
29-
3027
- name: Install dependencies
31-
run: pnpm i
28+
run: npm install --legacy-peer-deps
3229

3330
- name: Run ESLint
34-
run: pnpm lint --fix
31+
run: npm run lint --fix
3532

3633
- name: Run Prettier
37-
run: pnpm format
34+
run: npm run format
3835

3936
- name: Run Type Check
40-
run: pnpm type-check
37+
run: npm run type-check
4138

4239
- name: Commit and Push Changes
4340
run: |

0 commit comments

Comments
 (0)