Skip to content

feat: add frontend for the analysis feature, upload new logo #50

feat: add frontend for the analysis feature, upload new logo

feat: add frontend for the analysis feature, upload new logo #50

Workflow file for this run

name: React Frontend Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Check out repository
uses: actions/checkout@v5
- name: Use Node.js 20
uses: actions/setup-node@v5
with:
node-version: "20.14.0"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Type check and build
run: npm run build