Skip to content

Bump eslint from 9.18.0 to 9.19.0 #195

Bump eslint from 9.18.0 to 9.19.0

Bump eslint from 9.18.0 to 9.19.0 #195

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 10
run_install: false
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm format:check
- name: Run lint check
run: pnpm lint