feat: add NFT 2026 example, T7.010/T10.008 second examples, and M41–M… #58
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 |