-
Notifications
You must be signed in to change notification settings - Fork 39
48 lines (46 loc) · 1.34 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.5'
bundler-cache: true
- name: Bower
run: |
npm install -g bower
bower install
- name: Build site
run: |
bundle exec jekyll build 2> error.log
cat >&2 error.log
( ! grep -qie Error -e Warn error.log )
- name: Cache HTMLProofer
id: cache-htmlproofer
uses: actions/cache@v4
with:
path: tmp/.htmlproofer
key: ${{ runner.os }}-htmlproofer
- name: HTMLProofer
run: |
# Check all links
# Don't check links to twitter.com because they return 400 all the time
# Also ignore github.com because we have too many and they eventually return 429
bundle exec htmlproofer ./_site/\
--only-4xx\
--ignore-empty-alt=true\
--allow-hash-href=true\
--enforce-https=false\
--ignore-missing-alt=true\
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
--ignore-urls "/twitter.com/,/x.com/,/github.com/"\
--cache '{ "timeframe": { "external": "30d" } }'