Skip to content

Commit ae68c76

Browse files
committed
wip
1 parent 8aa9814 commit ae68c76

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ jobs:
2626
bundle exec jekyll build 2> error.log
2727
cat >&2 error.log
2828
( ! 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
2935
- name: HTMLProofer
3036
run: |
3137
# Check all links
@@ -37,9 +43,4 @@ jobs:
3743
--ignore-missing-alt=true\
3844
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
3945
--cache '{ "timeframe": { "external": "30d" } }'
40-
- name: Cache HTMLProofer
41-
id: cache-htmlproofer
42-
uses: actions/cache@v2
43-
with:
44-
path: tmp/.htmlproofer
45-
key: ${{ runner.os }}-htmlproofer
46+
continue-on-error: true

0 commit comments

Comments
 (0)