From 2efe8598acf7f6f0a08c8f3cc2c0149308d61c81 Mon Sep 17 00:00:00 2001 From: Dennis Reimann Date: Sat, 17 Dec 2022 14:40:35 +0100 Subject: [PATCH] Delete linkcheck action --- .github/workflows/linkcheck.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/linkcheck.yml diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml deleted file mode 100644 index 8d00c616175..00000000000 --- a/.github/workflows/linkcheck.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: linkcheck - -on: - # Run once per day - schedule: - - cron: '21 1 * * *' - -jobs: - build: - runs-on: ubuntu-latest - steps: - # Checkout and setup - - name: Checkout - uses: actions/checkout@v3 - - name: Setup - uses: actions/setup-node@v3 - with: - node-version: 16 - # Install and build - - name: Install - run: npm ci - # Run linkcheck, propagate linkcheck failure through grep pipe - - name: Linkcheck - run: set -o pipefail; npm run linkcheck:prod 2>/dev/null | grep "Getting links from\|BROKEN"