got debug working #5315
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: Solidity Lint | |
| on: | |
| push: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| detect-changes: | |
| uses: ./.github/workflows/check_diff.yaml | |
| with: | |
| pattern: ^contracts/\|^test/\|^lib/\|^foundry\.toml$\|^cSpell\.json$\|^package\.json$\|^yarn\.lock$\|^\.prettierrc$\|^\.prettierignore$\|^\.solhint\.json$\|^\.github/workflows/solidity_lint\.yml$ | |
| lint: | |
| name: solidity lint | |
| runs-on: ubuntu-latest | |
| needs: detect-changes | |
| if: needs.detect-changes.outputs.changed == 'true' | |
| env: | |
| MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
| SEPOLIA_RPC_URL: ${{ secrets.SEPOLIA_RPC_URL }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: install node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| - name: install packages | |
| uses: borales/actions-yarn@v4 | |
| with: | |
| cmd: install # will run `yarn install` command | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed | |
| - name: install foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: lint | |
| run: make lint-sol |