validate is alternative
diff --git a/script/cibuild b/script/cibuild
index a9ae4f4..3e70cc1 100644
--- a/script/cibuild
+++ b/script/cibuild
@@ -11,7 +11,12 @@
 mv _config.yml.tmp _config.yml
 
 bundle exec jekyll build
-bundle exec htmlproofer ./_site
+if [ "${VALIDATE}" != "" ]; then
+  echo "it will not validate the site"
+else
+  bundle exec htmlproofer ./_site
+fi
+
 mkdir -p ../tmp
 mv ./_site/* ../tmp