front_foundation #13

Merged
piair merged 188 commits from front_foundation into main 2025-05-14 09:08:33 +02:00
126 changed files with 2748 additions and 14628 deletions
Showing only changes of commit 15ccb5630a - Show all commits
.gitea/workflows
.gitignore
Documentation/openapi
Makefile
MyINPulse-back
config
documentation
front
hooks
keycloak
postgres

@ -0,0 +1,24 @@
name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install everything
working-directory: ./front/MyINPulse-front
run: npm i
- name: Run ESLint
working-directory: ./front/MyINPulse-front
run: npx eslint
- name: Run prettier
working-directory: ./front/MyINPulse-front
run: npx prettier src --check
- name: Build frontend
working-directory: ./front/MyINPulse-front
run: npm run build