2021-11-23 18:27:10 +01:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
build-check:
|
|
|
|
|
docker:
|
2026-03-26 21:07:09 +00:00
|
|
|
- image: cibuilds/hugo:0.159@sha256:52ef6813fe1d478d8278acf2db612d6109bbc7cf83991d2c618b62bdc4299aa9
|
2021-11-23 18:27:10 +01:00
|
|
|
working_directory: ~/LoveIt
|
|
|
|
|
steps:
|
|
|
|
|
- checkout
|
|
|
|
|
- run: git submodule sync
|
|
|
|
|
- run: git submodule update --init
|
|
|
|
|
- run: hugo --source=exampleSite -v --gc
|
|
|
|
|
- run: htmlproofer exampleSite/public --check-html --allow-hash-href --empty-alt-ignore --disable-external
|
|
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
|
build-check-exampleSite:
|
|
|
|
|
jobs:
|
|
|
|
|
- build-check
|