We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ed30f commit 8a1839dCopy full SHA for 8a1839d
.github/workflows/htmltest.yml
@@ -35,6 +35,8 @@ jobs:
35
ls -lR public/
36
37
- name: Run htmltest
38
+ # Don't fail the build on broken links
39
+ #continue-on-error: true
40
uses: wjdp/htmltest-action@master
41
with:
42
config: .htmltest.yml
.github/workflows/vale-action.yml
@@ -0,0 +1,18 @@
1
+name: Lint with Vale
2
+on: [pull_request]
3
+
4
+jobs:
5
+ vale:
6
+ name: Vale linter
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: errata-ai/vale-action@reviewdog
11
+ with:
12
+ filter_mode: added
13
+ vale_flags: "--no-exit --minAlertLevel=error --glob=*.adoc"
14
+ reporter: github-pr-review
15
+ fail_on_error: false
16
+ env:
17
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
18
+ REVIEWDOG_GITHUB_API_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments