Skip to content

Commit 6733a0e

Browse files
committed
♻️ Use npx in CI Pipeline
Signed-off-by: pcaversaccio <pascal.caversaccio@hotmail.ch>
1 parent b41f31f commit 6733a0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test-createx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ jobs:
6767
- name: Ensure Solidity version consistency
6868
run: |
6969
version_foundry=$(forge config --json | jq -r ".solc")
70-
version_hh=$(pnpm solc)
70+
version_hh=$(npx hardhat solc)
7171
if [[ $version_foundry != "0.8.23" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi
7272
7373
- name: Ensure `paris` as EVM version
7474
run: |
7575
version_foundry=$(forge config --json | jq -r ".evm_version")
76-
version_hh=$(pnpm evm)
76+
version_hh=$(npx hardhat evm)
7777
if [[ $version_foundry != "paris" ]] || [[ $version_foundry != $version_hh ]]; then exit 1; fi
7878
7979
- name: Set up Go

0 commit comments

Comments
 (0)