Skip to content

Merge pull request #110 from shenxian66ya/master #362

Merge pull request #110 from shenxian66ya/master

Merge pull request #110 from shenxian66ya/master #362

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Docs
on:
push:
branches: ["master"]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm 8
uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
cache-dependency-path: "./docs"
- name: Build VitePress
run: |
pnpm install
pnpm run docs:build
working-directory: ./docs
- name: Deploy Github Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: ./docs/.vitepress/dist