mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-12 23:19:25 +01:00
Mikaela Suomalainen
c945ce55b4
As Matrix.to seems to be the only string where the validator has a problem and I don't think I could fix it
21 lines
416 B
YAML
21 lines
416 B
YAML
language: python
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- openjdk-8-jre # install Java8 as required by vnu.jar
|
|
|
|
before_install:
|
|
- gem install github-pages #jekyll-theme-midnight
|
|
|
|
install:
|
|
- pip install html5validator
|
|
|
|
script:
|
|
- jekyll build --drafts --profile
|
|
- html5validator --root _site/ --also-check-css --ignore "matrix.to" --blacklist r or ir
|
|
|
|
env:
|
|
global:
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|