From 59aa5605f00a636aa3c9ffe0dc1e854d1805f12d Mon Sep 17 00:00:00 2001 From: Ruth Cheesley Date: Fri, 25 Oct 2024 19:46:05 +0200 Subject: [PATCH] Need to install external parser first, per https://github.com/errata-ai/vale-action?tab=readme-ov-file#usage --- .github/workflows/vale_linting.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/vale_linting.yml b/.github/workflows/vale_linting.yml index bbbfc5972..24055a014 100644 --- a/.github/workflows/vale_linting.yml +++ b/.github/workflows/vale_linting.yml @@ -1,7 +1,7 @@ name: Vale linting on: pull_request: - + jobs: prose: runs-on: ubuntu-latest @@ -14,12 +14,18 @@ jobs: with: fetch-depth: 0 - uses: actions/checkout@v4 + - name: Use Node.js uses: actions/setup-node@v3 with: node-version-file: ".node-version" + - name: Install dependencies run: npm install + + - name: Install Asciidoctor + run: sudo apt-get install -y asciidoctor + - name: Vale uses: errata-ai/vale-action@reviewdog with: