chore: remove finalizeUpgrade_v2 #4413
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 Scratch | |
| on: [push] | |
| jobs: | |
| test_hardhat_integration_scratch: | |
| name: Hardhat / Scratch | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 120 | |
| env: | |
| SKIP_GAS_REPORT: true | |
| SKIP_CONTRACT_SIZE: true | |
| SKIP_INTERFACES_CHECK: true | |
| services: | |
| hardhat-node: | |
| image: ghcr.io/lidofinance/hardhat-node:2.26.0-scratch | |
| ports: | |
| - 8555:8545 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Common setup | |
| uses: ./.github/workflows/setup | |
| - name: Set env | |
| run: cp .env.example .env | |
| - name: Run scratch deployment | |
| run: ./scripts/dao-deploy.sh | |
| env: | |
| NETWORK: "local" | |
| RPC_URL: "http://localhost:8555" | |
| GENESIS_TIME: 1639659600 # just a random time | |
| DEPLOYER: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266" # first acc of default mnemonic "test test ..." | |
| GAS_PRIORITY_FEE: 1 | |
| GAS_MAX_FEE: 100 | |
| NETWORK_STATE_FILE: "deployed-local.json" | |
| NETWORK_STATE_DEFAULTS_FILE: "scripts/defaults/testnet-defaults.json" | |
| - name: Finalize scratch deployment | |
| run: yarn hardhat --network local run --no-compile scripts/utils/mine.ts | |
| - name: Run integration tests | |
| run: yarn test:integration:fork:local | |
| env: | |
| INTEGRATION_WITH_CSM: "off" |