Skip to content

fix: test coverage gaps #1044

fix: test coverage gaps

fix: test coverage gaps #1044

Workflow file for this run

name: Testing
on:
- pull_request
jobs:
test:
strategy:
matrix:
node-version:
- 18.x
os:
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Test
run: CHECK_CONTRACT_SIZE=true npm run test-evm-versions