Skip to content

fix: lint

fix: lint #52

Workflow file for this run

name: Lint
on:
push:
branches: ["**"]
jobs:
eslint:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.20.0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
cache-dependency-path: frontend/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
working-directory: frontend
- name: Run ESLint
run: pnpm run lint
working-directory: frontend
- name: Run Unit Tests
run: pnpm test
working-directory: frontend