We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3548b65 commit c8e5825Copy full SHA for c8e5825
.github/workflows/oz-upgrades.yml
@@ -0,0 +1,27 @@
1
+name: OpenZeppelin Upgrades Validation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
+ workflow_dispatch:
9
10
+jobs:
11
+ oz-upgrades:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: "18"
19
+ cache: "yarn"
20
21
+ - name: Install dependencies
22
+ run: yarn install
23
24
+ - name: Validate TokenStaking Upgrade
25
+ env:
26
+ CHAIN_API_URL: ${{ secrets.MAINNET_ETH_HOSTNAME_HTTP }}
27
+ run: yarn hardhat deploy --tags ValidateUpgradeTokenStaking --network mainnet
0 commit comments