File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
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,27 @@ on: # yamllint disable-line rule:truthy
109 branches : ["main"]
1110 workflow_dispatch :
1211
12+ permissions : read-all
13+
1314jobs :
14- lint :
15+ markdownlint :
1516 name : Markdown Lint
1617 runs-on : ubuntu-24.04
1718
19+ strategy :
20+ matrix :
21+ node-version : [22.x]
22+ # See supported Node.js release schedule
23+ # at https://nodejs.org/en/about/releases/
24+
1825 steps :
1926 - name : Checkout repository
2027 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2128
22- - name : Set up Node.js
29+ - name : Set up Node.js ${{ matrix.node-version }}
2330 uses : actions/setup-node@v4
2431 with :
25- node-version : 22.x
32+ node-version : ${{ matrix.node-version }}
2633
2734 - name : Install dependencies
2835 run : npm install -g markdownlint-cli
You can’t perform that action at this time.
0 commit comments