test(graph): add more entities and human-readable README.md #7537
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: Linters | |
| on: [push] | |
| jobs: | |
| solhint: | |
| name: Solhint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Run solhint | |
| run: yarn lint:sol | |
| eslint: | |
| name: ESLint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Run eslint | |
| run: yarn lint:ts | |
| typescript: | |
| name: TypeScript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Generate typechain types | |
| run: yarn hardhat compile | |
| - name: Run typescript types check | |
| run: yarn typecheck | |
| format: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Run format check | |
| run: yarn format | |
| validate-configs: | |
| name: Validate Configs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Validate configurations | |
| run: yarn validate:configs |