Skip to content

Commit 056f755

Browse files
committed
wip
1 parent 45ba23a commit 056f755

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ jobs:
3939
- name: Setup Node
4040
uses: actions/setup-node@v4
4141
with:
42-
node-version: 20
42+
node-version: ${{ matrix.node-version }}
4343
cache: npm # or pnpm / yarn
4444

4545
- name: Setup Pages
4646
uses: actions/configure-pages@v4
4747

4848
- name: Install dependencies
49-
run: npm install --ignore-scripts --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install
49+
run: npm ci --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install
5050

5151
- name: Build with VitePress
5252
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
@@ -63,6 +63,7 @@ jobs:
6363
url: ${{ steps.deployment.outputs.page_url }}
6464
needs: build
6565
runs-on: ubuntu-latest
66+
6667
name: Deploy
6768
steps:
6869
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)