feat(EVES-003): add EVM/ERC-721 token metadata support #3
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: Schema Validation | |
| on: | |
| pull_request: | |
| paths: | |
| - "EVES/**/example/*.json" | |
| - "EVES/**/*-schemas/*.json" | |
| - "package.json" | |
| jobs: | |
| validate: | |
| name: Validate Examples Against Schemas | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Node | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Validate schemas | |
| run: npm run validate:schemas |