Skip to content

Update the project documentation #78

Update the project documentation

Update the project documentation #78

Workflow file for this run

name: Frontend Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies (frontend only)
working-directory: frontend
run: npm ci
- name: Run ESLint (frontend only)
working-directory: frontend
run: npm run lint