Skip to content

feat: add ERC-6909 Token and Supply extension #945

feat: add ERC-6909 Token and Supply extension

feat: add ERC-6909 Token and Supply extension #945

Workflow file for this run

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