Skip to content

release: v2.2.2 — Nexus 1.3.2 + audited ERC-8211 composability via submodule #77

release: v2.2.2 — Nexus 1.3.2 + audited ERC-8211 composability via submodule

release: v2.2.2 — Nexus 1.3.2 + audited ERC-8211 composability via submodule #77

Workflow file for this run

name: Solidity Linting
on:
workflow_dispatch:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Fetch full history for better diff analysis
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 10.17.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint with Solhint
run: |
pnpm lint:prod
echo "✅ Linting passed with no errors, warnings or suggestions still may be present"