File tree Expand file tree Collapse file tree 4 files changed +592
-326
lines changed
Expand file tree Collapse file tree 4 files changed +592
-326
lines changed Original file line number Diff line number Diff line change 1+ # This file is part of the EESSI build-and-deploy bot,
2+ # see https://github.com/EESSI/eessi-bot-software-layer
3+ #
4+ # The bot helps with requests to add software installations to the
5+ # EESSI software layer, see https://github.com/EESSI/software-layer
6+ #
7+ # author: Thomas Roeblitz (@trz42)
8+ #
9+ # license: GPLv2
10+ #
11+
12+ name : Markdown Lint
13+ on : [push, pull_request]
14+ # Declare default permissions as read only.
15+ permissions : read-all
16+
17+ jobs :
18+ markdown-lint :
19+ runs-on : ubuntu-24.04
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
23+
24+ - name : Setup Node.js
25+ uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.0
26+ with :
27+ node-version : ' 18'
28+
29+ - name : Install markdownlint-cli
30+ run : npm install -g markdownlint-cli
31+
32+ - name : Run markdownlint
33+ run : markdownlint "**/*.md" --ignore .git
Original file line number Diff line number Diff line change 1+ {
2+ "default" : true ,
3+ "MD013" : false ,
4+ "MD033" : false ,
5+ "MD041" : false ,
6+ "MD024" : false ,
7+ "MD026" : {
8+ "punctuation" : " .,;:!"
9+ }
10+ }
You can’t perform that action at this time.
0 commit comments