Skip to content

feat(EVES-003): add EVM/ERC-721 token metadata support #21

feat(EVES-003): add EVM/ERC-721 token metadata support

feat(EVES-003): add EVM/ERC-721 token metadata support #21

Workflow file for this run

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Restore lychee cache
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
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