mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
f5eb16e900
* Document seo.organization and the JSON-LD structured data graph * Fix lint warnings: spaced em dashes, node24 action versions * Update optimize/seo.mdx Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com> --------- Co-authored-by: Ethan Palm <56270045+ethanpalm@users.noreply.github.com>
19 lines
390 B
YAML
19 lines
390 B
YAML
name: Check links
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
check-links:
|
|
name: Check links
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: "22.x"
|
|
- name: Install Mintlify CLI
|
|
run: npm i -g mint
|
|
- name: Run broken link checker
|
|
run: mint broken-links
|