summaryrefslogtreecommitdiff
path: root/themes/LoveIt/.circleci/config.yml
blob: 4752606cc8756dd99e876cc51391762fa783417a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 2.1
jobs:
  build-check:
    docker:
      - image: cibuilds/hugo:0.62
    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