feat(EVES-003): add EVM/ERC-721 token metadata support #31
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: Link Check | |
| on: | |
| pull_request: | |
| paths: | |
| - "**/*.md" | |
| schedule: | |
| - cron: "0 9 * * 1" # Weekly on Monday at 09:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| link-check: | |
| name: Check Links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Restore lychee cache | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 | |
| with: | |
| path: .lycheecache | |
| key: lychee-cache-${{ github.sha }} | |
| restore-keys: lychee-cache- | |
| - name: Check links | |
| uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2.8.0 | |
| with: | |
| args: >- | |
| --cache | |
| --max-cache-age 7d | |
| --no-progress | |
| '**/*.md' | |
| fail: true |