Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

chore(deps)(deps-dev): bump the eslint group with 2 updates #11

chore(deps)(deps-dev): bump the eslint group with 2 updates

chore(deps)(deps-dev): bump the eslint group with 2 updates #11

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '20'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run ESLint
run: pnpm run lint
- name: Check Prettier formatting
run: pnpm run prettier