Compare commits

2 Commits

Author SHA1 Message Date
Manus CI
bdfc417435 CI : workflow validate.yml, manifeste ci.required:true, package.json avec scripts verify
All checks were successful
Validation applicative / Tests de contrat (push) Successful in 10s
- Ajout .gitea/workflows/validate.yml (runs-on: ci-node22, test de contrat)
- Ajout package.json avec scripts test/check/build/verify
- Ajout ci.required:true dans app.json
2026-08-21 09:50:30 +00:00
Manus
95d60c1776 chore: versionner les actifs canoniques du portail 2026-08-17 20:24:09 +00:00
12 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
name: Validation applicative
on:
push:
branches: [main, master]
paths-ignore:
- "**.md"
- "docs/**"
pull_request:
branches: [main, master]
paths-ignore:
- "**.md"
- "docs/**"
workflow_dispatch:
jobs:
verify:
name: Tests de contrat
runs-on: ci-node22
timeout-minutes: 5
steps:
- name: Récupérer les sources
uses: actions/checkout@v4
- name: Vérifier le contrat du portail
run: node test/portal-contract.test.js

4
.gitignore vendored
View File

@@ -4,3 +4,7 @@ node_modules/
dist/ dist/
build/ build/
.DS_Store .DS_Store
# Sauvegardes locales : les versions de référence restent dans Git.
*.bak
*.bak-*
*.tmp

16
app.json Normal file
View File

@@ -0,0 +1,16 @@
{
"id": "portail-santinova",
"name": "Portail Applicatif",
"category": "INFRA",
"urls": {
"recette": "https://portail.recette.santinova-soft.org",
"prod": "https://portail.santinova-soft.org"
},
"containerName": "portail-santinova",
"image": "images/portail.png",
"giteaRepo": "portail-santinova",
"giteaOwner": "manus-admin",
"ci": {
"required": true
}
}

BIN
images/budget-si.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

BIN
images/dashboard.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

BIN
images/gestion-at.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

BIN
images/pilotage-ms.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
images/portail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 33 KiB

11
package.json Normal file
View File

@@ -0,0 +1,11 @@
{
"name": "portail-santinova",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "node test/portal-contract.test.js",
"check": "echo 'No TypeScript — skip'",
"build": "echo 'Static site — no build step'",
"verify": "pnpm check && pnpm test && pnpm build"
}
}