Skip to content

Bump @typescript-eslint/eslint-plugin from 5.40.0 to 5.62.0 #16

Bump @typescript-eslint/eslint-plugin from 5.40.0 to 5.62.0

Bump @typescript-eslint/eslint-plugin from 5.40.0 to 5.62.0 #16

Workflow file for this run

name: Run Basic Checks
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
jobs:
checks:
name: Compiling, Linting, Unit Testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install Dependencies
run: pnpm install --frozen-lockfile
working-directory: ./
- name: Lint
run: pnpm lint
- name: Check formatting
run: pnpm prettier:check
- name: Test (Unit)
run: pnpm test:ci