mirror of
https://github.com/Mikaela/cv.git
synced 2025-01-09 19:52:38 +01:00
Compare commits
3 Commits
f00d30f9b8
...
87082b7efd
Author | SHA1 | Date | |
---|---|---|---|
|
87082b7efd | ||
954ae84191 | |||
b1da17a7b4 |
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
@ -5,3 +5,7 @@ updates:
|
|||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
26
.github/workflows/html5validator.yml
vendored
Normal file
26
.github/workflows/html5validator.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: HTML5 Validator
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- uses: actions/checkout@v3 # 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
|
Loading…
Reference in New Issue
Block a user