We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 845edcd + f415c8b commit 190f011Copy full SHA for 190f011
1 file changed
.github/workflows/pages.yml
@@ -17,16 +17,20 @@ concurrency:
17
18
jobs:
19
build:
20
+ env:
21
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
22
+ defaults:
23
+ run:
24
+ working-directory: www
25
runs-on: ubuntu-latest
26
steps:
27
- name: Checkout
28
uses: actions/checkout@v5
- with:
- fetch-depth: 1
29
30
- name: Setup pnpm
31
uses: pnpm/action-setup@v4
32
with:
33
+ version: 10.32.0
34
run_install: false
35
36
- name: Setup Node
@@ -40,11 +44,9 @@ jobs:
40
44
uses: actions/configure-pages@v4
41
45
42
46
- name: Install dependencies
43
- working-directory: www
47
run: pnpm install --frozen-lockfile
48
49
- name: Build with VitePress
50
run: pnpm docs:build
51
52
- name: Upload artifact
0 commit comments