2021-11-23 18:27:10 +01:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
build-check:
|
|
|
|
|
docker:
|
2024-12-30 17:16:50 +00:00
|
|
|
- image: cibuilds/hugo:0.140@sha256:f27aabab31c71c955ad14dbd3a592000eaf4b237c8147bff94426e602587fc70
|
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
|