-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Use fixed version for runs-on argument - Run tests on multiple OS's - Avoid workflows without comments
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,9 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- run: npm install -g markdownlint-cli | ||
|
||
- run: npm install -g [email protected] | ||
# Run markdown lint with the following rules disabled: | ||
# no hard tabs, line length, no duplicate heading, ordered list item prefix, no inline html and no emphasis as heading | ||
- name: use markdownlint-cli to lint markdown file | ||
run: | | ||
find ./ -name "*.md" | grep -v vendor | grep -v commandline | grep -v .github | grep -v swagger | grep -v api | \ | ||
|