Skip to content

feat: add automated linting and formatting enforcement #1

feat: add automated linting and formatting enforcement

feat: add automated linting and formatting enforcement #1

Workflow file for this run

name: Lint & Format Check
on:
pull_request:
branches: [main, develop]
paths:
- 'frontend/**'
- '.github/workflows/lint.yml'
push:
branches: [main, develop]
paths:
- 'frontend/**'
- '.github/workflows/lint.yml'
jobs:
lint:
name: Lint Frontend Code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm ci
- name: Check formatting
working-directory: frontend
run: npm run format:check
- name: Run ESLint
working-directory: frontend
run: npm run lint