We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
npx
1 parent b41f31f commit 6733a0eCopy full SHA for 6733a0e
1 file changed
.github/workflows/test-createx.yml
@@ -67,13 +67,13 @@ jobs:
67
- name: Ensure Solidity version consistency
68
run: |
69
version_foundry=$(forge config --json | jq -r ".solc")
70
- version_hh=$(pnpm solc)
+ version_hh=$(npx hardhat solc)
71
if [[ $version_foundry != "0.8.23" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi
72
73
- name: Ensure `paris` as EVM version
74
75
version_foundry=$(forge config --json | jq -r ".evm_version")
76
- version_hh=$(pnpm evm)
+ version_hh=$(npx hardhat evm)
77
if [[ $version_foundry != "paris" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi
78
79
- name: Set up Go
0 commit comments