test: bump vitest to v1 beta #1112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**/__tests__/**' | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
env: | |
DOCS_GA_ID: G-CTB8FQ7VMW | |
NODE_VERSION: '18' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build documentation site | |
run: pnpm docs:release | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v4 | |
with: | |
repo: vuepress/vuepress.github.io | |
target_branch: main | |
build_dir: docs/.vuepress/dist | |
env: | |
GH_PAT: ${{ secrets.GH_PAGES_TOKEN }} |