Skip to content

Commit

Permalink
chore: revert dev dependency to latest hardhat (#716)
Browse files Browse the repository at this point in the history
* chore: revert dev dependency to latest hardhat

EDR now supports all the complicated test setup moves that where required by the
Ignition end to end test suite.

* Fix package-lock

* Regenerate package-lock.json

* Update CI workflow

* Fix but in JsonRpcClient.call

---------

Co-authored-by: Patricio Palladino <email@patriciopalladino.com>
  • Loading branch information
kanej and alcuadrado committed Apr 4, 2024
1 parent 4149ed2 commit 6fcedc6
Show file tree
Hide file tree
Showing 13 changed files with 632 additions and 614 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
test_on_windows:
name: Test Ignition on Windows with Node 16
name: Test Ignition on Windows with Node 18
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -27,13 +27,13 @@ jobs:
run: npm run test:examples

test_on_macos:
name: Test Ignition on MacOS with Node 16
name: Test Ignition on MacOS with Node 18
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20.5]
node: [18, 20.5]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion examples/complete/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/ens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion examples/sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/ts-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
2 changes: 1 addition & 1 deletion examples/viem-sample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@nomicfoundation/hardhat-network-helpers": "1.0.10",
"@nomicfoundation/hardhat-viem": "2.0.0",
"chai": "4.4.1",
"hardhat": "2.20.0",
"hardhat": "^2.18.0",
"prettier-plugin-solidity": "1.1.3"
}
}
Loading

0 comments on commit 6fcedc6

Please sign in to comment.