Added frontend + backend tests

This commit is contained in:
Peter BALIVET 2025-07-01 13:55:33 +02:00
parent db34ddd0a9
commit 89bd541247
15 changed files with 10887 additions and 4497 deletions

View file

@ -6,7 +6,7 @@ FROM node:20-alpine AS build-client
WORKDIR /client
COPY /client /client
RUN npm ci && npm cache clean --force
RUN npm install && npm cache clean --force
RUN npm run generate
### STAGE 1: Build server ###