Skip to content

Add audit report (#201) #639

Add audit report (#201)

Add audit report (#201) #639

Workflow file for this run

name: Verify
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: "Verify"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm install
- run: npx hardhat compile
- run: npm run format:check
- run: npm run lint
- run: npm run type-check
- run: npm test