fix: remove 6 duplicate stub files + add 37 technique spec mitigation… #59
This file contains hidden or 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
| name: markdown-lint | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.md" | |
| - ".markdownlint.json" | |
| - ".github/workflows/markdown-lint.yml" | |
| push: | |
| branches: [main] | |
| paths: | |
| - "**/*.md" | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run markdownlint | |
| uses: DavidAnson/markdownlint-cli2-action@v16 | |
| with: | |
| globs: | | |
| **/*.md | |
| !node_modules |