Skip to content

Commit

Permalink
Validate TokenStaking upgradeability with OZ Upgrades on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cygnusv committed Nov 28, 2023
1 parent 3548b65 commit f20d988
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/oz-upgrades.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: OpenZeppelin Upgrades Validation

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

jobs:
code-lint-and-format:
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
run: yarn hardhat deploy --tags ValidateUpgradeTokenStaking --network ${{ secrets.MAINNET_ETH_HOSTNAME_HTTP }}

0 comments on commit f20d988

Please sign in to comment.