Skip to content

opt to resubmit

opt to resubmit #10

Workflow file for this run

name: Lint Check
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: yarn lint-ts # -- --max-warnings 0
- name: Run Solhint
run: yarn lint-sol # -- --max-warnings 0