Skip to content

Skip Claude review for Dependabot PRs #168

Skip Claude review for Dependabot PRs

Skip Claude review for Dependabot PRs #168

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [master, main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.11"
- name: Setup Pages
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d
with:
enablement: true
- name: Check docs writing style
run: python3 scripts/check_docs_style.py
- name: Install dependencies
working-directory: site
run: bun install --frozen-lockfile
- name: Lint docs
working-directory: site
run: bun run lint -- --max-warnings=0
- name: Build docs
working-directory: site
run: bun run build
- name: Upload artifact
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9
with:
path: site/dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128