mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
Testing deployment
This commit is contained in:
commit
54e95da158
5 changed files with 18 additions and 5 deletions
2
.github/workflows/1.yml
vendored
2
.github/workflows/1.yml
vendored
|
|
@ -1,5 +1,5 @@
|
|||
name: deploy-hardhat
|
||||
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
|
|
|||
5
.github/workflows/deploy.sh
vendored
Executable file
5
.github/workflows/deploy.sh
vendored
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
git add .
|
||||
|
||||
git commit -m "Testing deployment"
|
||||
|
||||
git push origin new_branch
|
||||
2
.github/workflows/docker-deploy.yml
vendored
2
.github/workflows/docker-deploy.yml
vendored
|
|
@ -1,5 +1,5 @@
|
|||
name: deploy-hardhat
|
||||
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
|
|
|||
|
|
@ -3,4 +3,9 @@ require("@nomicfoundation/hardhat-toolbox");
|
|||
/** @type import('hardhat/config').HardhatUserConfig */
|
||||
module.exports = {
|
||||
solidity: "0.8.24",
|
||||
networks: {
|
||||
devnet: {
|
||||
url: "http://localhost:8545",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "hardhat-pacage",
|
||||
"name": "hardhat-package",
|
||||
"version": "1.0.0",
|
||||
"description": "denis hardhat project",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "hardhat test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
@ -18,6 +18,9 @@
|
|||
"homepage": "https://github.com/denislav-mladenov/go-ethereum#readme",
|
||||
"devDependencies": {
|
||||
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
||||
"hardhat": "^2.22.6"
|
||||
"hardhat": "^2.22.5",
|
||||
"@nomiclabs/hardhat-waffle": "^2.0.0",
|
||||
"ethereum-waffle": "^3.4.0",
|
||||
"chai": "^4.3.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue