refactor: rename test contract, update workflow steps; remove geth #258
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 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| solhint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '25' | |
| - uses: actions/checkout@v3 | |
| - name: Install Node dependencies | |
| run: | | |
| npm ci | |
| - name: Run solhint | |
| run: | | |
| npm run lint:sol |