From a777f407f0f39d9a7cc78acb4e8148c3cc3efdaf Mon Sep 17 00:00:00 2001 From: Anthony Date: Mon, 14 Oct 2024 11:00:10 +0200 Subject: [PATCH] fixed workflow to ignore 999 status code --- .github/workflows/ts-run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ts-run-tests.yml b/.github/workflows/ts-run-tests.yml index 44e50bc..d3c7dfc 100644 --- a/.github/workflows/ts-run-tests.yml +++ b/.github/workflows/ts-run-tests.yml @@ -23,12 +23,12 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 - + - name: Link Checker uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a with: fail: true - args: --scheme=https . --exclude-all-private + args: --scheme=https . --exclude-all-private --accept 999 - name: Install dependencies run: npm install - name: Run tests