feat: repalce legacytx.StdSignBytes with the aminojson sign mode handler in eip712 #3287
Workflow file for this run
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: Solhint | |
| # This workflow is only run when a .sol file has been changed | |
| on: | |
| pull_request: | |
| permissions: read-all | |
| jobs: | |
| solhint: | |
| name: runner / solhint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: technote-space/[email protected] | |
| id: git_diff | |
| with: | |
| PATTERNS: | | |
| **/**.sol | |
| - uses: actions/setup-node@v4 | |
| if: env.GIT_DIFF | |
| - run: npm install -g [email protected] | |
| if: env.GIT_DIFF | |
| - run: solhint --version | |
| if: env.GIT_DIFF | |
| - run: solhint '**/*.sol' | |
| if: env.GIT_DIFF |