Skip to content

Bump solhint from 5.0.3 to 5.0.4 (#2) #4

Bump solhint from 5.0.3 to 5.0.4 (#2)

Bump solhint from 5.0.3 to 5.0.4 (#2) #4

Workflow file for this run

name: lint
on:
push:
branches: ["main"]
paths-ignore:
- README.md
- .gitignore
pull_request:
branches: ["*"]
paths-ignore:
- README.md
- .gitignore
jobs:
check:
timeout-minutes: 30
strategy:
fail-fast: true
name: solhint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "yarn"
- name: Install dependencies
run: yarn install --frozen-lockfile # optional, --immutable
- name: Run solhint
run: yarn lint