Skip to content

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

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

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

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@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