Skip to content

Add ESLint with CI enforcement #62

Add ESLint with CI enforcement

Add ESLint with CI enforcement #62

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
frontend-lint:
name: Frontend Lint & Typecheck
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run lint
- run: npm run typecheck