mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2025-01-24 19:24:19 +01:00
Compare commits
14 Commits
c7a5b599ff
...
b48caf5462
Author | SHA1 | Date | |
---|---|---|---|
b48caf5462 | |||
c012de0c17 | |||
630a42946b | |||
e07c00b807 | |||
53b0b8af27 | |||
6f60eb26f3 | |||
cc10de6668 | |||
0814bf6ef4 | |||
b3d56babe2 | |||
3320d2a943 | |||
624f8da71f | |||
cd87885e7f | |||
e51266e4ad | |||
731d107644 |
5
.github/dependabot.yml
vendored
5
.github/dependabot.yml
vendored
@ -5,3 +5,8 @@ updates:
|
||||
schedule:
|
||||
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