Skip to content

Commit

Permalink
Extracting MAINNET_RPC_URL to env config section
Browse files Browse the repository at this point in the history
  • Loading branch information
dimpar committed Apr 26, 2024
1 parent 77ebe87 commit 9029aab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/solidity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,10 @@ jobs:
path: solidity/

- name: Run Hardhat Node
env:
MAINNET_RPC_URL: ${{ secrets.MAINNET_CHAIN_API_URL }}
run: |
MAINNET_RPC_URL=${{ secrets.MAINNET_CHAIN_API_URL }} pnpm node:forking &
pnpm node:forking &
while [[ -z $(lsof -i :8545 -t) ]]; do echo "Waiting for port 8545 to be open..."; sleep 10; done
- name: Run Integration Tests
Expand Down

0 comments on commit 9029aab

Please sign in to comment.