From 9af4ba9cbe657f443d7e8b20fab6d47c537ddc5d Mon Sep 17 00:00:00 2001 From: Hubert Bugaj Date: Mon, 30 Sep 2024 09:33:50 +0200 Subject: [PATCH] feat: add typescript files to link check --- .github/workflows/link_check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/link_check.yml b/.github/workflows/link_check.yml index 4d93ebe..f88687b 100644 --- a/.github/workflows/link_check.yml +++ b/.github/workflows/link_check.yml @@ -21,6 +21,8 @@ jobs: - name: Link Checker id: lychee uses: lycheeverse/lychee-action@v1 + with: + args: --base . --verbose --no-progress './**/*.md' './**/*.html' './**/*.rst' '.**/*.tsx' - name: Create Issue From File if: env.lychee_exit_code != 0 && github.event_name == 'schedule'