File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 11---
2-
32name : Markdown Lint
43
54on : # yamllint disable-line rule:truthy
@@ -10,19 +9,26 @@ on: # yamllint disable-line rule:truthy
109 branches : ["main"]
1110 workflow_dispatch :
1211
12+ permissions : read-all
13+
1314jobs :
14- lint :
15- name : Markdown Lint
15+ markdownlint :
1616 runs-on : ubuntu-24.04
1717
18+ strategy :
19+ matrix :
20+ node-version : [22.x]
21+ # See supported Node.js release schedule
22+ # at https://nodejs.org/en/about/releases/
23+
1824 steps :
1925 - name : Checkout repository
2026 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2127
22- - name : Set up Node.js
28+ - name : Set up Node.js ${{ matrix.node-version }}
2329 uses : actions/setup-node@v4
2430 with :
25- node-version : 22.x
31+ node-version : ${{ matrix.node-version }}
2632
2733 - name : Install dependencies
2834 run : npm install -g markdownlint-cli
You can’t perform that action at this time.
0 commit comments