Bump solidity-coverage from 0.7.22 to 0.8.12 #146
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fork mainnet on Tenderly | |
on: | |
pull_request: | |
types: [opened, labeled] | |
jobs: | |
tenderly: | |
env: | |
FORK_NAME: ${{ github.event.pull_request.title }} | |
TENDERLY_USER: ${{ secrets.TENDERLY_USER }} | |
TENDERLY_PROJECT: ${{ secrets.TENDERLY_PROJECT }} | |
TENDERLY_ACCESS_KEY: ${{ secrets.TENDERLY_ACCESS_KEY }} | |
TENDERLY_FORK_CHAIN_ID: ${{ secrets.TENDERLY_FORK_CHAIN_ID }} | |
if: contains(github.event.pull_request.labels.*.name, 'fork') | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: | | |
export NODE_ENV=development | |
yarn install --frozen-lockfile | |
- name: Fork mainnet on Tenderly | |
id: fork-tenderly | |
run: | | |
echo "TENDERLY_FORK_ID=$(yarn fork)" >> $GITHUB_ENV | |
- name: Tenderly fork id | |
run: | | |
echo "Tenderly fork id: ${{ env.TENDERLY_FORK_ID }}" | |
- name: Deploy smart-contracts to fork | |
run: | | |
yarn hardhat clean | |
yarn hardhat compile | |
yarn deploy:fork |