Merge pull request #105 from lidofinance/feat/integration #852
This file contains 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 |