8000 add hardhat contract sizer on compilation (#363) · iden3/contracts@d6b6b25 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

add hardhat contract sizer on compilation (#363) #1800

add hardhat contract sizer on compilation (#363)

add hardhat contract sizer on compilation (#363) #1800

Workflow file for this run

name: Security Scan
on: # yamllint disable-line rule:truthy
push:
workflow_call:
workflow_dispatch: {}
jobs:
solhint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: npm ci
- run: npx solhint "contracts/**/*.sol"
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
- run: npm ci
- run: npx hardhat compile
- name: solidity-coverage
run: npx hardhat coverage
- name: coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
0