2021-11-23 18:27:10 +01:00
|
|
|
version: 2.1
|
|
|
|
|
jobs:
|
|
|
|
|
build-check:
|
|
|
|
|
docker:
|
2026-04-08 15:13:50 +00:00
|
|
|
- image: cibuilds/hugo:0.160@sha256:e0f489b0eef88e6366e239e9afe003e7154e6892754b4274094ed6c7b7e68d5a
|
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
|