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 c621ad7 commit 3ec9605Copy full SHA for 3ec9605
.github/workflows/build.yml
@@ -22,24 +22,13 @@ jobs:
22
uses: actions/setup-node@v4
23
with:
24
node-version: 18
25
- cache: 'pnpm'
26
-
27
- - name: Enable corepack and install pnpm
28
- run: |
29
- corepack enable
30
- corepack prepare pnpm@latest --activate
31
32
- - name: Verify pnpm installation
33
- run: pnpm --version
+ cache: 'npm'
34
35
- name: Install Dependencies
36
- run: pnpm install --frozen-lockfile
+ run: npm install --legacy-peer-deps
37
38
- name: Run Linting
39
- run: pnpm run lint
40
41
- - name: Type Check
42
- run: pnpm exec tsc --noEmit
+ run: npm run lint
43
44
- name: Build Next.js App
45
- run: pnpm run build
+ run: npm run build
0 commit comments