Skip to content

Commit 59aa560

Browse files
committed
Need to install external parser first, per https://github.com/errata-ai/vale-action?tab=readme-ov-file#usage
1 parent 1c91441 commit 59aa560

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/vale_linting.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Vale linting
22
on:
33
pull_request:
4-
4+
55
jobs:
66
prose:
77
runs-on: ubuntu-latest
@@ -14,12 +14,18 @@ jobs:
1414
with:
1515
fetch-depth: 0
1616
- uses: actions/checkout@v4
17+
1718
- name: Use Node.js
1819
uses: actions/setup-node@v3
1920
with:
2021
node-version-file: ".node-version"
22+
2123
- name: Install dependencies
2224
run: npm install
25+
26+
- name: Install Asciidoctor
27+
run: sudo apt-get install -y asciidoctor
28+
2329
- name: Vale
2430
uses: errata-ai/vale-action@reviewdog
2531
with:

0 commit comments

Comments
 (0)