Skip to content

NAY4-S2 Documentation Improvement (#147) #1561

NAY4-S2 Documentation Improvement (#147)

NAY4-S2 Documentation Improvement (#147) #1561

Workflow file for this run

name: lint
on:
push:
branches:
- main
- dev
pull_request:
branches:
- dev
jobs:
run-linter:
name: Lint contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "yarn"
registry-url: "https://registry.npmjs.org"
scope: "@nayms"
- name: Install node dev dependencies
run: yarn
- name: Run prettier check
run: yarn run prettier:check
- name: Run lint check
run: yarn run solhint:check