File tree 1 file changed +3
-2
lines changed 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,14 +39,14 @@ jobs:
39
39
- name : Setup Node
40
40
uses : actions/setup-node@v4
41
41
with :
42
- node-version : 20
42
+ node-version : ${{ matrix.node-version }}
43
43
cache : npm # or pnpm / yarn
44
44
45
45
- name : Setup Pages
46
46
uses : actions/configure-pages@v4
47
47
48
48
- 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
50
50
51
51
- name : Build with VitePress
52
52
run : npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
63
63
url : ${{ steps.deployment.outputs.page_url }}
64
64
needs : build
65
65
runs-on : ubuntu-latest
66
+
66
67
name : Deploy
67
68
steps :
68
69
- name : Deploy to GitHub Pages
You can’t perform that action at this time.
0 commit comments