Skip to content

Commit 6938ec9

Browse files
authored
ci: fix vale action (#7608)
1 parent 2bc9c04 commit 6938ec9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/testing.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,20 @@ jobs:
5252
strategy:
5353
matrix:
5454
os: [ubuntu-latest]
55+
node-version: [lts/*]
5556
runs-on: ${{ matrix.os }}
5657
steps:
5758
- uses: actions/checkout@v4
5859

60+
- name: Use Node.js ${{ matrix.node-version }}
61+
uses: actions/setup-node@v4
62+
with:
63+
node-version: ${{ matrix.node-version }}
64+
cache: yarn
65+
66+
- name: Install MDX Parser
67+
run: npm install -g mdx2vast
68+
5969
- name: Vale
6070
uses: errata-ai/vale-action@v2.1.1
6171
with:

0 commit comments

Comments
 (0)