Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,20 @@ concurrency:

jobs:
build:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
defaults:
run:
working-directory: www
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 1

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.32.0
run_install: false

- name: Setup Node
Expand All @@ -40,11 +44,9 @@ jobs:
uses: actions/configure-pages@v4

- name: Install dependencies
working-directory: www
run: pnpm install --frozen-lockfile

- name: Build with VitePress
working-directory: www
run: pnpm docs:build

- name: Upload artifact
Expand Down
Loading