Skip to content

Commit 4057c6d

Browse files
committed
Use html-proofer options compatible with 2.3.0: --check-links false --check-external false
1 parent 2435561 commit 4057c6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/jekyll.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454
- name: Test HTML
5555
run: |
5656
gem install html-proofer
57-
htmlproofer ./_site --disable-external --checks Images,Scripts
57+
htmlproofer ./_site --check-links false --check-external false
5858
- name: Test CSS
5959
run: |
6060
npm install -g csslint
6161
find ./_site -name "*.css" -exec csslint {} \;
6262
- name: Check links
6363
run: |
6464
gem install html-proofer
65-
htmlproofer ./_site --disable-external --check-external-hash
65+
htmlproofer ./_site --check-external false --check-external-hash
6666
- name: Setup Pages
6767
if: github.event_name == 'push'
6868
id: pages

0 commit comments

Comments
 (0)