Skip to content

Commit ebd5cae

Browse files
committed
Update html-proofer commands to use htmlproof with correct 2.3.0 options: --disable-external --checks-to-ignore links
1 parent 4057c6d commit ebd5cae

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 --check-links false --check-external false
57+
htmlproof ./_site --disable-external --checks-to-ignore links
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 --check-external false --check-external-hash
65+
htmlproof ./_site --disable-external --check-external-hash
6666
- name: Setup Pages
6767
if: github.event_name == 'push'
6868
id: pages

0 commit comments

Comments
 (0)