Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrf committed Jul 27, 2023
1 parent 8aa9814 commit ae68c76
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ jobs:
bundle exec jekyll build 2> error.log
cat >&2 error.log
( ! grep -qie Error -e Warn error.log )
- name: Cache HTMLProofer
id: cache-htmlproofer
uses: actions/cache@v2
with:
path: tmp/.htmlproofer
key: ${{ runner.os }}-htmlproofer
- name: HTMLProofer
run: |
# Check all links
Expand All @@ -37,9 +43,4 @@ jobs:
--ignore-missing-alt=true\
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
--cache '{ "timeframe": { "external": "30d" } }'
- name: Cache HTMLProofer
id: cache-htmlproofer
uses: actions/cache@v2
with:
path: tmp/.htmlproofer
key: ${{ runner.os }}-htmlproofer
continue-on-error: true

0 comments on commit ae68c76

Please sign in to comment.