We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa0fcd5 commit da1d380Copy full SHA for da1d380
.github/workflows/types.yml
@@ -24,20 +24,17 @@ jobs:
24
with:
25
node-version: '20'
26
27
- - name: Install pnpm
28
- run: npm install -g pnpm
29
-
30
- name: Install dependencies
31
- run: pnpm i
+ run: npm install --legacy-peer-deps
32
33
- name: Run ESLint
34
- run: pnpm lint --fix
+ run: npm run lint --fix
35
36
- name: Run Prettier
37
- run: pnpm format
+ run: npm run format
38
39
- name: Run Type Check
40
- run: pnpm type-check
+ run: npm run type-check
41
42
- name: Commit and Push Changes
43
run: |
0 commit comments