-
Notifications
You must be signed in to change notification settings - Fork 39
46 lines (44 loc) · 1.14 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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- 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@v2
with:
path: tmp/.htmlproofer
key: ${{ runner.os }}-htmlproofer
- name: HTMLProofer
run: |
# Check all links
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:"\
--cache '{ "timeframe": { "external": "30d" } }'
continue-on-error: true