Merge branch 'develop' into test/graph-mvp #3174
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: Integration Tests | |
| on: [push] | |
| jobs: | |
| test_hardhat_integration_fork: | |
| name: Hardhat / Mainnet | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 120 | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=7200 | |
| SKIP_GAS_REPORT: true | |
| SKIP_CONTRACT_SIZE: true | |
| SKIP_INTERFACES_CHECK: true | |
| services: | |
| hardhat-node: | |
| image: ghcr.io/lidofinance/hardhat-node:2.26.0 | |
| ports: | |
| - 8555:8545 | |
| env: | |
| ETH_RPC_URL: "${{ secrets.ETH_RPC_URL }}" | |
| DONT_SET_CHAIN_ID: true | |
| HARDFORK: "prague" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Mock Aragon voting | |
| run: yarn upgrade:mock-voting | |
| env: | |
| RPC_URL: http://localhost:8555 | |
| NETWORK_STATE_FILE: deployed-mainnet.json | |
| - name: Workaround for not updated state error when forking a fork | |
| run: yarn hardhat --network local run --no-compile scripts/utils/mine.ts | |
| env: | |
| RPC_URL: http://localhost:8555 | |
| - name: Run integration tests | |
| run: yarn test:integration | |
| env: | |
| RPC_URL: http://localhost:8555 | |
| LOG_LEVEL: debug | |
| NETWORK_STATE_FILE: deployed-mainnet.json |