Skip to content

initial commit for whitespace code #1

initial commit for whitespace code

initial commit for whitespace code #1

Workflow file for this run

# Cache: 2025-09-03 02:13:59
name: Docs
on:
push:
branches: [main]
paths: ["docs/**", ".github/**"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
docs_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: cd docs && pnpm install
- name: Lint and format check
run: cd docs && pnpm check
- name: Build with Astro
run: cd docs && pnpm build
- name: Wait for required checks
uses: actions/github-script@v7
with:
script: |
const script = require('./.github/wait-for-checks.js');
await script({ github, context, core });
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/dist
docs_deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: docs_build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4