Compare commits
2 Commits
facturatio
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bba0e175a2 | ||
|
|
325a0f82ae |
26
.gitea/workflows/validate.yml
Normal file
26
.gitea/workflows/validate.yml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
name: Validation applicative
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [main, master]
|
||||||
|
paths-ignore:
|
||||||
|
- "**.md"
|
||||||
|
- "docs/**"
|
||||||
|
pull_request:
|
||||||
|
branches: [main, master]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
verify:
|
||||||
|
name: Build backend et frontend
|
||||||
|
runs-on: ci-node22
|
||||||
|
timeout-minutes: 10
|
||||||
|
steps:
|
||||||
|
- name: Récupérer les sources
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Installer et build backend
|
||||||
|
run: cd backend && npm install --ignore-scripts && npm run build
|
||||||
|
|
||||||
|
- name: Installer et build frontend
|
||||||
|
run: cd frontend && npm install --ignore-scripts && npm run build
|
||||||
5
app.json
5
app.json
@@ -9,5 +9,8 @@
|
|||||||
"containerName": "santinova-facturation-app",
|
"containerName": "santinova-facturation-app",
|
||||||
"image": "images/facturation.png",
|
"image": "images/facturation.png",
|
||||||
"giteaRepo": "facturation-santinova",
|
"giteaRepo": "facturation-santinova",
|
||||||
"giteaOwner": "manus-admin"
|
"giteaOwner": "manus-admin",
|
||||||
|
"ci": {
|
||||||
|
"required": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user