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 14b9527 commit aff0c80Copy full SHA for aff0c80
.github/workflows/ci.yml
@@ -19,23 +19,28 @@ jobs:
19
- name: Checkout code
20
uses: actions/checkout@v4
21
22
+ - name: Install pnpm
23
+ uses: pnpm/action-setup@v3
24
+ with:
25
+ version: 9
26
+
27
- name: Setup Node.js
28
uses: actions/setup-node@v4
29
with:
30
node-version: '20'
- cache: 'npm'
31
+ cache: 'pnpm'
32
33
- name: Install dependencies
- run: npm ci
34
+ run: pnpm install --frozen-lockfile
35
36
- name: Generate source files
- run: npx fumadocs-mdx
37
+ run: pnpm exec fumadocs-mdx
38
39
- name: Type check
- run: npx tsc --noEmit
40
+ run: pnpm exec tsc --noEmit
41
42
- name: Build
- run: npm run build
43
+ run: pnpm run build
44
env:
45
NODE_ENV: production
46
0 commit comments