From 94b869a974eb0a2dff5858156ca0e673b38bff94 Mon Sep 17 00:00:00 2001 From: Guangdong Liu Date: Tue, 26 Mar 2024 23:42:34 +0800 Subject: [PATCH] github action: Add dead link check for .mdx files (#19492) - **Description:** Add dead link check for .mdx files. I checked the logs and found that files with .mdx suffix were not checked. https://github.com/langchain-ai/langchain/actions/runs/8409525467/job/23026924465#logs - @baskaryan, @efriis, @eyurtsev, @hwchase17. --- .github/workflows/check-broken-links.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/check-broken-links.yml b/.github/workflows/check-broken-links.yml index 130a5097ec..62eb34882b 100644 --- a/.github/workflows/check-broken-links.yml +++ b/.github/workflows/check-broken-links.yml @@ -22,3 +22,7 @@ jobs: - name: Check broken links run: yarn check-broken-links working-directory: ./docs + - name: Check broken links for .mdx files + uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + file-extension: '.mdx'