update logos and icons for base and mega-eth #1457
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: Checks | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| configs_check: | |
| name: Validate configs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| uses: bahmutov/npm-install@v1 | |
| with: | |
| useRollingCache: true | |
| - name: Run ESLint | |
| run: yarn eslint . | |
| - name: Validate marketplace config schema | |
| run: yarn validate:marketplace | |
| - name: Validate marketplace security reports schema | |
| run: yarn validate:marketplace-security-reports | |
| - name: Validate featured networks config schema | |
| run: yarn validate:featured-networks | |
| - name: Validate footer links config schema | |
| run: yarn validate:footer-links |