Skip to content

readme and some other updates #44

readme and some other updates

readme and some other updates #44

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- 'frontend/**'
pull_request:
paths:
- 'frontend/**'
jobs:
build:
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
- name: Install deps
run: npm ci
- name: Biome check
run: npx biome check . || true
- name: Build
run: npm run build
env:
NEXT_PUBLIC_API_URL: http://localhost:8000