Skip to content

fix(docs): render Mermaid diagrams in docs (#12464) #38

fix(docs): render Mermaid diagrams in docs (#12464)

fix(docs): render Mermaid diagrams in docs (#12464) #38

Workflow file for this run

name: Docs
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- uses: actions/setup-node@v4
with:
node-version: "19"
# Use the same make target both locally and on CI to make it easier to debug failures.
- name: Build & Lint docs
run: make docs
# If markdownlint fixes issues, files will be changed. If so, fail the build.
- name: Check if markdownlint --fix made changes
run: git diff --exit-code
# Upload the site so reviewers see it.
- name: Upload Docs Site
uses: actions/upload-artifact@v3
with:
name: docs
path: site
if-no-files-found: error