Skip to content

fixed linting warnings #6

fixed linting warnings

fixed linting warnings #6

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install, build, and upload docs
uses: withastro/action@v6
with:
path: .
node-version: 22
package-manager: pnpm@10.30.3
build-cmd: pnpm build:docs
out-dir: packages/docs/dist
env:
DOCS_BASE_PATH: /patch-pulse
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5