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
|
||||
Reference in New Issue
Block a user