We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a32773f commit 4754722Copy full SHA for 4754722
.github/workflows/deploy.yml
@@ -40,10 +40,11 @@ jobs:
40
uses: actions/setup-node@v4
41
with:
42
node-version: 22
43
+ cache: npm # 或 pnpm / yarn
44
- name: Setup Pages
45
uses: actions/configure-pages@v4
46
- name: Install dependencies
- run: npm install # 或 pnpm install / yarn install / bun install
47
+ run: npm ci # 或 pnpm install / yarn install / bun install
48
- name: Build with VitePress
49
run: npm run docs:build # 或 pnpm docs:build / yarn docs:build / bun run docs:build
50
- name: Upload artifact
0 commit comments