Skip to content

Commit f63ad7f

Browse files
committed
chore: use separate fork for core tests
1 parent a415dce commit f63ad7f

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

.github/actions/core_tests/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,5 @@ runs:
4141
shell: bash
4242
run: yarn test:integration:fork:mainnet
4343
env:
44+
MAINNET_RPC_URL: http://localhost:8555
4445
LOG_LEVEL: debug

.github/workflows/normal_vote_ci.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,19 @@ jobs:
1919

2020
services:
2121
hardhat-node:
22-
image: ghcr.io/lidofinance/hardhat-node:2.22.19.2-shanghai
22+
image: ghcr.io/lidofinance/hardhat-node:2.22.19.3-shanghai
2323
ports:
2424
- 8545:8545
2525
env:
2626
ETH_RPC_URL: "https://mainnet.infura.io/v3/${{ secrets.WEB3_INFURA_PROJECT_ID }}"
27+
28+
hardhat-node-fork:
29+
image: ghcr.io/lidofinance/hardhat-node:2.22.19.3-shanghai
30+
ports:
31+
- 8555:8545
32+
env:
33+
ETH_RPC_URL: "http://hardhat-node:8545"
34+
2735
steps:
2836
- uses: actions/checkout@v4
2937

@@ -38,10 +46,10 @@ jobs:
3846
infura: ${{ secrets.WEB3_INFURA_PROJECT_ID }}
3947
etherscan: ${{ secrets.ETHERSCAN_TOKEN }}
4048

41-
# - name: Core tests
42-
# uses: ./.github/actions/core_tests
43-
# with:
44-
# vote: "normal"
49+
- name: Core tests
50+
uses: ./.github/actions/core_tests
51+
with:
52+
vote: "normal"
4553

4654
- name: Scripts tests
4755
uses: ./.github/actions/scripts_tests

0 commit comments

Comments
 (0)