Skip to content

Fix Card props typing for Next build #5

Fix Card props typing for Next build

Fix Card props typing for Next build #5

Workflow file for this run

name: Frontend CI
on:
push:
paths:
- "frontend/**"
- ".github/workflows/frontend-ci.yml"
pull_request:
paths:
- "frontend/**"
- ".github/workflows/frontend-ci.yml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use 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 || npm install
- name: Build
working-directory: frontend
env:
NEXT_PUBLIC_API_BASE_URL: http://localhost:5000
run: npm run build