summaryrefslogtreecommitdiff
path: root/themes/CodeIT/.github/workflows/pull-request.yml
blob: 6da7a747ed7dd5a9819591f554a0a167ceccbb12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: "Build and checks"
on:
  pull_request:
    branches:
      - master
      - dev
jobs:
  check_hugo_site:
    name: Check Hugo site
    runs-on: ubuntu-20.04
    defaults:
      run:
        working-directory: CodeIT
    steps:
      - name: Set up Git repository
        uses: actions/checkout@v2
        with:
          path: 'CodeIT'
          fetch-depth: 0
      - name: Setup Hugo
        uses: peaceiris/actions-hugo@v2
        with:
          hugo-version: 'latest'
          extended: true
      - name: Build static pages
        run: hugo --source=exampleSite -v --gc
      - name: Check HTML
        uses: chabad360/htmlproofer@master
        with:
          directory: "CodeIT/exampleSite/public"
          arguments: --check-html --allow-hash-href --empty-alt-ignore --disable-external