Skip to content

build(deps): Bump rollup from 4.22.4 to 4.59.0 in /docs in the npm_and_yarn group across 1 directory #706

build(deps): Bump rollup from 4.22.4 to 4.59.0 in /docs in the npm_and_yarn group across 1 directory

build(deps): Bump rollup from 4.22.4 to 4.59.0 in /docs in the npm_and_yarn group across 1 directory #706

Workflow file for this run

name: Docs Build
permissions:
contents: read
on:
push:
branches: [main]
paths:
- "docs/**"
pull_request:
paths:
- "docs/**"
jobs:
docs_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 20
cache: yarn # or pnpm / npm
cache-dependency-path: docs/yarn.lock
- name: Install dependencies
run: yarn install # or pnpm install / npm ci
working-directory: docs
- name: Build with VitePress
run: yarn build # or pnpm build / npm build
working-directory: docs