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 8aa9814 commit ae68c76Copy full SHA for ae68c76
.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
@@ -37,9 +43,4 @@ jobs:
43
--ignore-missing-alt=true\
38
44
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
39
45
--cache '{ "timeframe": { "external": "30d" } }'
40
- - name: Cache HTMLProofer
41
- id: cache-htmlproofer
42
- uses: actions/cache@v2
- with:
- path: tmp/.htmlproofer
- key: ${{ runner.os }}-htmlproofer
46
+ continue-on-error: true
0 commit comments