Skip to content

⬆️ Bump vite from 5.2.12 to 5.3.2 in the vite group (#29) #27

⬆️ Bump vite from 5.2.12 to 5.3.2 in the vite group (#29)

⬆️ Bump vite from 5.2.12 to 5.3.2 in the vite group (#29) #27

Workflow file for this run

name: GitHub Pages
on:
push:
branches: main
jobs:
build_pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 21
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run docs
- uses: actions/upload-pages-artifact@v3
with:
path: docs
deploy_pages:
needs: build_pages
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v4