2021-11-23 18:27:10 +01:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
build-check:
|
|
|
|
|
docker:
|
2024-11-23 18:01:04 +00:00
|
|
|
- image: cibuilds/hugo:0.139@sha256:d374969ff592260d1c5b21e91d1cfa8668525ba8a6b293157d5e2f585e2a309b
|
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
|