8 Commits

Author SHA1 Message Date
ef6fe94634 test remove double build
All checks were successful
Build Docker Image Front / run (push) Successful in 22s
Build Docker Image Back / run (push) Successful in 21s
2024-05-04 19:43:45 +02:00
e1c6f0d281 add 80% of coverage
All checks were successful
Build Docker Image Front / run (push) Successful in 21s
Build Docker Image Back / run (push) Successful in 22s
Test and coverage / coverage (pull_request) Successful in 49s
2024-05-04 16:25:12 +02:00
0a85c94b03 diasble annotation
All checks were successful
Build Docker Image Front / run (push) Successful in 23s
Build Docker Image Back / run (push) Successful in 20s
Test and coverage / coverage (pull_request) Successful in 49s
2024-05-04 16:21:00 +02:00
feef7c4cf1 add custom tocken
Some checks failed
Build Docker Image Front / run (push) Successful in 22s
Build Docker Image Back / run (push) Successful in 21s
Test and coverage / coverage (pull_request) Failing after 49s
2024-05-04 16:15:20 +02:00
e3acfe1a92 add pr number
Some checks failed
Build Docker Image Front / run (push) Successful in 23s
Build Docker Image Back / run (push) Successful in 20s
Test and coverage / coverage (pull_request) Failing after 47s
2024-05-04 16:09:50 +02:00
6c93091109 run on all branche
Some checks failed
Build Docker Image Front / run (push) Successful in 22s
Build Docker Image Back / run (push) Successful in 21s
Test and coverage / coverage (pull_request) Failing after 51s
2024-05-04 16:07:05 +02:00
bf94c5b262 fix name
Some checks failed
Build Docker Image Front / run (push) Successful in 22s
Build Docker Image Back / run (push) Has been cancelled
2024-05-04 16:06:23 +02:00
0fda82da7a make some test
All checks were successful
Build Docker Image Front / run (push) Successful in 24s
Build Docker Image Back / run (push) Successful in 22s
2024-05-04 16:04:15 +02:00
3 changed files with 14 additions and 7 deletions

View File

@ -6,9 +6,9 @@ on: #declancheur
- '*' - '*'
tags: tags:
- v* - v*
pull_request: # pull_request:
branches: # branches:
- master # - master
jobs: jobs:
run: #jobs ID (nom du jobs) run: #jobs ID (nom du jobs)

View File

@ -1,8 +1,8 @@
name: 'coverage' name: Test and coverage
on: on:
pull_request: pull_request:
branches: branches:
- master - '*'
jobs: jobs:
coverage: coverage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -15,3 +15,5 @@ jobs:
output: comment, report-markdown output: comment, report-markdown
prnumber: ${{ steps.findPr.outputs.number }} prnumber: ${{ steps.findPr.outputs.number }}
custom-title: Coverage report for backend custom-title: Coverage report for backend
github-token: ${{ secrets.PR_TOCKEN}}
annotations: none #disable annotation

View File

@ -11,4 +11,9 @@ module.exports = {
'!/coverage/', '!/coverage/',
'!**/server.ts', '!**/server.ts',
], ],
coverageThreshold: {
global: {
lines: 80,
},
},
}; };