mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-06 03:59:26 +01:00
Aminda Suomalainen
e769697dd8
I think it dislikes perfectly valid things and I don't have energy to go through it
26 lines
589 B
Plaintext
Vendored
26 lines
589 B
Plaintext
Vendored
name: HTML5 Validator
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4 # Required will all actions
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: ".ruby-version"
|
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
|
|
|
- name: Jekyll build
|
|
run: |
|
|
bundle exec jekyll build --drafts --profile
|
|
|
|
- name: Checks HTML5 validity
|
|
uses: Cyb3r-Jak3/html5validator-action@v7.2.0
|
|
with:
|
|
root: _site/
|
|
blacklist: n r or ir
|