Triparty precompile functions for block delay and bridge limits #844
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 links | |
| # The workflow uses `markdown-link-check` to find broken links in the Markdown | |
| # files. | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**.md' | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gaurav-nelson/github-action-markdown-link-check@master | |
| with: | |
| check-modified-files-only: "yes" | |
| use-quiet-mode: "yes" | |
| base-branch: "main" | |
| config-file: "mlc_config.json" |