Skip to content

Updates related to fee automation #1366

Updates related to fee automation

Updates related to fee automation #1366

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize, edited, ready_for_review]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: yarn --ignore-scripts
shell: bash
- name: Check cyclic dependencies
run: yarn hardhat run scripts/cyclicDependencyCheck.ts
shell: bash
- name: Check contract sizing
continue-on-error: true # to show errors as warnings
run: yarn hardhat measure-contract-sizes
shell: bash
- name: Run Tests
run: yarn hardhat test
shell: bash