Update header level in API reference documentation from h6 to h5
#4
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: Keep docs sync | |
| on: | |
| push: | |
| branches: | |
| - gh-pages | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📥 Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: 📦 Setup node and pnpm install | |
| uses: ./.github/share-actions/setup-node-and-pnpm-install | |
| - name: 🔧 Run generation | |
| run: pnpm run-all | |
| # there is no push if no diff | |
| - name: 🚀 Push API reference documentation | |
| uses: ./.github/share-actions/commit-and-push-docs |