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 b4e39af commit 7a69033Copy full SHA for 7a69033
Gemfile
@@ -4,4 +4,8 @@ source 'https://rubygems.org'
4
gem 'jekyll', '~> 4.2.1'
5
gem 'jekyll-redirect-from'
6
7
+# html-proofer checks for broken links.
8
+# used in docker-compose.yml test job
9
+gem 'html-proofer'
10
+
11
gem "webrick", "~> 1.7"
docker-compose.yaml
@@ -43,7 +43,8 @@ services:
43
command: /bin/bash -cl "
44
bundle check
45
&& bundle exec jekyll doctor --source /srv/jekyll --destination /output
46
- && bundle exec jekyll build --source /srv/jekyll --destination /output"
+ && bundle exec jekyll build --source /srv/jekyll --destination /output
47
+ && bundle exec htmlproofer --only_4xx --ignore-urls twitter.com /output"
48
49
website:
50
<<: *common
0 commit comments