Add automated HTML tests (#70)
* Add gemfile lock to gitingore Add a rule to the gitignore file to ignore the Gemfile.lock generated file. * Add automated tests Add automated tests of the website through Travis CI.
This commit is contained in:
parent
1f8b04a0b1
commit
f95f5e536b
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ _site/
|
|||||||
node_modules/
|
node_modules/
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
*.patch
|
*.patch
|
||||||
|
Gemfile.lock
|
||||||
|
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
language: ruby
|
||||||
|
rvm:
|
||||||
|
- 2.2
|
||||||
|
sudo: false
|
||||||
|
script:
|
||||||
|
- bundle exec jekyll build
|
||||||
|
- bundle exec htmlproofer '_site/' --allow-hash-href --check-html
|
||||||
|
|
||||||
|
env:
|
||||||
|
global:
|
||||||
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
Loading…
x
Reference in New Issue
Block a user