Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/oz-upgrades.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: OpenZeppelin Upgrades Validation

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
oz-upgrades:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"

- name: Install dependencies
run: yarn install

- name: Validate TokenStaking Upgrade
env:
CHAIN_API_URL: ${{ secrets.MAINNET_ETH_HOSTNAME_HTTP }}
run: yarn hardhat deploy --tags ValidateUpgradeTokenStaking --network mainnet
Loading