Skip to content

Use makeAddr and changePrank #246

Use makeAddr and changePrank

Use makeAddr and changePrank #246

Workflow file for this run

name: Hardhat
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
build-contracts:
name: Gas tests
runs-on: ubuntu-latest
steps:
- name: Generate a token
id: generate-token
uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ steps.generate-token.outputs.token }}
submodules: recursive
- uses: ./.github/actions/install
- name: Build contracts
run: yarn build:hardhat --force # don't use compilation cache
- name: Run hardhat tests
run: yarn test:hardhat