Add ERC-8128 project entry to results.json #7
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: Validate results.json | |
| on: | |
| pull_request: | |
| paths: | |
| - "output/results.json" | |
| - "output/taxonomy.json" | |
| - "scripts/validate-results.mjs" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "output/results.json" | |
| - "output/taxonomy.json" | |
| - "scripts/validate-results.mjs" | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - run: node scripts/validate-results.mjs | |