-
Notifications
You must be signed in to change notification settings - Fork 60
50 lines (42 loc) · 1.18 KB
/
build-site.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Build and Jekyll site and run htmlproofer
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-site:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
- name: Fetch main
run: |
git fetch origin main --depth 1
git branch
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build with Jekyll
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Check links with lychee
id: lychee
uses: lycheeverse/[email protected]
with:
fail: true
args: --verbose --no-progress _site/*.html
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Check HTML using htmlproofer
uses: chabad360/htmlproofer@v2
with:
directory: "_site"
arguments: |
--ignore-files "/.+\/_posts\/README.md"
--checks "Images,Scripts"