Skip to content

Previous docking results #41

Previous docking results

Previous docking results #41

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