fix: blog json syntax highlighting doesnt work #21
Workflow file for this run
This file contains 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: autofix.ci | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
- name: Install | |
uses: ./.github/actions/install | |
with: | |
ts: true | |
go: true | |
- run: pnpm biome format . --write && pnpm biome check . --apply | |
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a | |
lint_docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint main docs | |
run: npx mintlify@latest broken-links | |
working-directory: apps/docs | |
- name: Lint engineering docs | |
run: npx mintlify@latest broken-links | |
working-directory: apps/engineering |