Add logger manager and refactor the linked managers #132
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
# SPDX-FileCopyrightText: 2024 Benoit Rolandeau <[email protected]> | |
# SPDX-License-Identifier: MIT | |
name: Markdown Lint | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DavidAnson/markdownlint-cli2-action@v18 | |
with: | |
globs: | | |
*.md | |
!test/*.md | |
!**/.git | |
!**/node_modules |