chore(deps): Bump the all-npm-ui-version-updates group across 1 directory with 16 updates #4015
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build-docs: | |
name: Build Docs | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: Swatinem/rust-cache@v2 | |
- name: 'Validate .md files (use "just fmt-md" to fix)' | |
uses: DavidAnson/markdownlint-cli2-action@v20 | |
with: | |
config: '.github/files/config.markdownlint-cli2.jsonc' | |
- name: 'Check Markdown URLs (same as "just clippy-md")' | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'no' | |
use-verbose-mode: 'yes' | |
folder-path: 'docs/src' | |
file-path: './README.md' | |
config-file: '.github/files/markdown.links.config.json' | |
- uses: taiki-e/install-action@v2 | |
with: { tool: 'mdbook,mdbook-alerts' } | |
- run: mdbook build docs | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: github.ref == 'refs/heads/main' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./target/book |