From 0bfdcf713be2a9e55c45156d9b682461eaf3ee9b Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Sun, 1 May 2022 17:12:10 -0700 Subject: [PATCH] move fix for #1376 to right part of CI config --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c7d3241cb..fbe9373eb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,8 +25,8 @@ jobs: - name: Proofing (Pull Request) if: ${{ github.event_name != 'schedule' }} run: | - bundle exec htmlproofer ./_site/ --disable-external --only-4xx --empty-alt-ignore --allow-hash-href --typhoeus-config='{"headers":{"Accept-Encoding":"gzip, deflate"}}' + bundle exec htmlproofer ./_site/ --disable-external --only-4xx --empty-alt-ignore --allow-hash-href - name: Proofing (Cron) if: ${{ github.event_name == 'schedule' }} run: | - bundle exec htmlproofer ./_site/ --external_only --only-4xx --http-status-ignore "400,401,429" --empty-alt-ignore --allow-hash-href --url-ignore "/trends.google.com/,/pgp.mit.edu/,/www.oracle.com/,/scalafiddle.io/" + bundle exec htmlproofer ./_site/ --external_only --only-4xx --http-status-ignore "400,401,429" --empty-alt-ignore --allow-hash-href --url-ignore "/trends.google.com/,/pgp.mit.edu/,/www.oracle.com/,/scalafiddle.io/" --typhoeus-config='{"headers":{"Accept-Encoding":"gzip, deflate"}}'