Skip to content

build(deps): bump bufbuild/buf-setup-action from 1.30.0 to 1.32.2 #45

build(deps): bump bufbuild/buf-setup-action from 1.30.0 to 1.32.2

build(deps): bump bufbuild/buf-setup-action from 1.30.0 to 1.32.2 #45

Workflow file for this run

name: Solhint
# This workflow is only run when a .sol file has been changed
on:
pull_request:
jobs:
solhint:
name: runner / solhint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: technote-space/[email protected]
id: git_diff
with:
PATTERNS: |
**/**.sol
- uses: actions/setup-node@v4
if: env.GIT_DIFF
- run: npm install -g solhint
if: env.GIT_DIFF
- run: solhint --version
if: env.GIT_DIFF
- run: solhint '**/*.sol'
if: env.GIT_DIFF