We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d4083 commit 5d7acdfCopy full SHA for 5d7acdf
.github/workflows/ci.yml
@@ -26,6 +26,12 @@ jobs:
26
bundle exec jekyll build 2> error.log
27
cat >&2 error.log
28
( ! grep -qie Error -e Warn error.log )
29
+ - name: Cache HTMLProofer
30
+ id: cache-htmlproofer
31
+ uses: actions/cache@v2
32
+ with:
33
+ path: tmp/.htmlproofer
34
+ key: ${{ runner.os }}-htmlproofer
35
- name: HTMLProofer
36
run: |
37
# Check all links
@@ -35,4 +41,6 @@ jobs:
41
--allow-hash-href=true\
42
--enforce-https=false\
43
--ignore-missing-alt=true\
38
- --swap-urls "https\:\/\/scala\.epfl\.ch:"
44
+ --swap-urls "https\:\/\/scala\.epfl\.ch:"\
45
+ --cache '{ "timeframe": { "external": "30d" } }'
46
+ continue-on-error: true
0 commit comments