Skip to content

Merge branch 'ssv-staking' into feature/fuzz-tests #2671

Merge branch 'ssv-staking' into feature/fuzz-tests

Merge branch 'ssv-staking' into feature/fuzz-tests #2671

name: Solidity code coverage
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
name: Solidity code coverage
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
env:
GH_TOKEN: ${{ secrets.github_token }}
- shell: bash
run: |
shopt -s globstar nullglob
npx hardhat test --coverage \
test/unit/**/*.ts \
test/integration/**/*.ts \
test/sanity/**/*.ts \
test/e2e/**/*.ts
env:
NO_GAS_ENFORCE: '1'
COVERAGE: 'true'