[Provers H02] Update verifyStateCommitment #143
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: checks | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - next-v* | |
| - release-v* | |
| pull_request: {} | |
| workflow_dispatch: {} | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up environment | |
| uses: ./.github/actions/setup | |
| - run: npm run lint | |
| tests: | |
| runs-on: ubuntu-latest | |
| env: | |
| ETHEREUM_RPC_URL: ${{ secrets.ETHEREUM_RPC_URL }} | |
| ARBITRUM_RPC_URL: ${{ secrets.ARBITRUM_RPC_URL }} | |
| OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }} | |
| ZKSYNC_RPC_URL: ${{ secrets.ZKSYNC_RPC_URL }} | |
| LINEA_RPC_URL: ${{ secrets.LINEA_RPC_URL }} | |
| SCROLL_RPC_URL: ${{ secrets.SCROLL_RPC_URL }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: Set up environment | |
| uses: ./.github/actions/setup | |
| - name: Run tests | |
| run: forge test -vv | |