We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97ebccc commit ac2dde2Copy full SHA for ac2dde2
1 file changed
.github/workflows/html-proofer.yml
@@ -1,4 +1,4 @@
1
-name: HTMLProofer
+name: Checks
2
3
on:
4
pull_request:
@@ -15,16 +15,8 @@ jobs:
15
with:
16
bundler-cache: true # Runs bundle install and caches gems
17
18
- - name: Cache HTMLProofer results
19
- uses: actions/cache@v3
20
- with:
21
- path: tmp/.htmlproofer
22
- key: ${{ runner.os }}-htmlproofer-${{ github.head_ref || github.run_id }}
23
- restore-keys: |
24
- ${{ runner.os }}-htmlproofer-
25
-
26
- name: Build Jekyll site
27
run: bundle exec jekyll build
28
29
- name: Run HTMLProofer
30
- run: bundle exec htmlproofer ./_site --allow-hash-href --ignore-urls "/f-droid.org/"
+ run: bundle exec htmlproofer --allow-hash-href=true --ignore-status-codes=404 ./_site
0 commit comments