Skip to content

feat/1731 code coverage in Codecov #14

feat/1731 code coverage in Codecov

feat/1731 code coverage in Codecov #14

Workflow file for this run

name: Smart contracts test
on:
push:
paths:
- 'contracts/**'
- 'testdata/**'
- 'prover/**'
jobs:
run-contract-tests:
runs-on: ubuntu-latest
name: Run smart contracts tests
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Setup nodejs environment
uses: ./.github/actions/setup-nodejs
- name: Check JS formatting
run: pnpm -F contracts run lint:ts
- name: Compile kzg.node
run: npx node-gyp --directory=contracts/node_modules/c-kzg rebuild # explicitly running rebuild to get the .node file
- name: Run smart contracts tests and generate coverage report
run: pnpm -F contracts run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage/coverage-final.json
flags: hardhat
name: codecov-contracts
verbose: true
comment:
layout: " diff, flags, files"

Check failure on line 41 in .github/workflows/run-smc-tests.yml

View workflow run for this annotation

GitHub Actions / Smart contracts test

Invalid workflow file

The workflow is not valid. .github/workflows/run-smc-tests.yml (Line: 41, Col: 13): A mapping was not expected
behavior: default
require_changes: false
require_base: false
require_head: true
hide_project_coverage: false
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
solidity-format-check:
runs-on: ubuntu-latest
name: Solidity format check
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Setup nodejs environment
uses: ./.github/actions/setup-nodejs
- name: Check Solidity formatting
run: pnpm -F contracts run lint:sol