feat: add ERC-6909 Token and Supply extension #945
Workflow file for this run
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: Check Markdown | |
| # This workflow checks that all links in the documentation are valid. | |
| # It does this for markdown files. | |
| # We prefer lycheeverse because it is faster, but doesn't support adoc files yet(https://github.com/lycheeverse/lychee/issues/291) | |
| # Because of that, we use linkspector for adoc files and lychee for md files. | |
| on: | |
| push: | |
| branches: [main, v*] | |
| pull_request: | |
| branches: [main, v*] | |
| jobs: | |
| check-links-md: | |
| name: Check Markdown Links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Link Checker | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: --no-progress './**/*.md' | |
| fail: true |