Bug fix: mint cost when asBase is false ; Fixed integration tests #5316
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: 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 }} | |
| BASE_RPC_URL: ${{ secrets.BASE_RPC_URL }} | |
| GNOSIS_CHAIN_RPC_URL: ${{ secrets.GNOSIS_CHAIN_RPC_URL }} | |
| LINEA_RPC_URL: ${{ secrets.LINEA_RPC_URL }} | |
| ARBITRUM_RPC_URL: ${{ secrets.ARBITRUM_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 |