Skip to content

Bump @docusaurus/preset-classic from 3.9.1 to 3.9.2 in /site #1

Bump @docusaurus/preset-classic from 3.9.1 to 3.9.2 in /site

Bump @docusaurus/preset-classic from 3.9.1 to 3.9.2 in /site #1

Workflow file for this run

name: Build site
on:
pull_request:
branches:
- main
paths:
- '.github/workflows/**'
- 'site/**'
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages-${{ github.ref }}"
cancel-in-progress: false
jobs:
build-site:
name: Build site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
node-version: 20
cache: yarn
cache-dependency-path: site/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./site
- name: Build site
run: yarn build
working-directory: ./site