Skip to content

deps: bump prettier from 3.8.1 to 3.8.2 (#818) #705

deps: bump prettier from 3.8.1 to 3.8.2 (#818)

deps: bump prettier from 3.8.1 to 3.8.2 (#818) #705

Workflow file for this run

name: 'docs'
on:
push:
branches: [main]
workflow_call:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 'lts/jod'
- run: npm install
- run: npm run generate:docs
- uses: actions/upload-pages-artifact@v4
with:
path: ./docs
# @see https://github.com/actions/deploy-pages
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@v5