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 6e89278 commit b157ed0Copy full SHA for b157ed0
1 file changed
.github/workflows/testing.yml
@@ -52,10 +52,20 @@ jobs:
52
strategy:
53
matrix:
54
os: [ubuntu-latest]
55
+ node-version: [lts/*]
56
runs-on: ${{ matrix.os }}
57
steps:
58
- uses: actions/checkout@v4
59
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
69
- name: Vale
70
uses: errata-ai/vale-action@v2.1.1
71
with:
0 commit comments