mirror of
https://github.com/Mikaela/cv.git
synced 2024-11-01 06:49:23 +01:00
27 lines
552 B
YAML
27 lines
552 B
YAML
|
name: HTML5 Validator
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- uses: actions/checkout@v2 # Required will all actions
|
||
|
|
||
|
- uses: ruby/setup-ruby@v1
|
||
|
with:
|
||
|
ruby-version: 3.1
|
||
|
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.1.1
|
||
|
with:
|
||
|
root: _site/
|
||
|
blacklist: n r or ir
|