Skip to content

Merge pull request #32 from bcnmy/fix/duplicate-emit #171

Merge pull request #32 from bcnmy/fix/duplicate-emit

Merge pull request #32 from bcnmy/fix/duplicate-emit #171

Workflow file for this run

name: Coverage
on: push
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22' # Specify the Node.js version you want to use
- name: Install lcov (for genhtml)
run: sudo apt-get update && sudo apt-get install -y lcov
- name: Install JavaScript Dependencies
run: pnpm install --ignore-scripts
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Foundry Dependencies
run: forge install
- name: Generate Foundry Coverage Report
run: pnpm coverage:report
- name: Upload Foundry Coverage Report to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/foundry/lcov.info
flags: foundry