Skip to content

Commit e9b81c2

Browse files
committed
fix: update workflow to use pnpm for dependency installation and script execution
1 parent 0a27ced commit e9b81c2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/types.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ jobs:
2525
node-version: '20'
2626

2727
- name: Install dependencies
28-
run: npm install --legacy-peer-deps
28+
run: pnpm install --legacy-peer-deps
2929

3030
- name: Run ESLint
31-
run: npm run lint --fix
31+
run: pnpm lint --fix
3232

3333
- name: Run Prettier
34-
run: npm run format
34+
run: pnpm format
3535

3636
- name: Run Type Check
37-
run: npm run type-check
37+
run: pnpm type-check
3838

3939
- name: Commit and Push Changes
4040
run: |

0 commit comments

Comments
 (0)