Skip to content

feat: smart M bridging #142

feat: smart M bridging

feat: smart M bridging #142

Workflow file for this run

name: Forge Coverage
on:
push:
branches:
- main
pull_request:
permissions: write-all
jobs:
check:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node
uses: actions/setup-node@v4
- name: Install NPM dependencies
run: npm install
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install lcov
uses: hrishikesh-kadam/setup-lcov@v1
- name: Run coverage
env:
MNEMONIC: ${{ secrets.MNEMONIC_FOR_TESTS }}
MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }}
BASE_RPC_URL: ${{ secrets.BASE_RPC_URL }}
OPTIMISM_RPC_URL: ${{ secrets.OPTIMISM_RPC_URL }}
run: make coverage profile=ci
id: coverage
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v3
with:
coverage-files: lcov.info
artifact-name: code-coverage-report
minimum-coverage: 0
github-token: ${{ secrets.GITHUB_TOKEN }}
update-comment: true