Skip to content

Commit

Permalink
Adding triggers to pipelines (#17960)
Browse files Browse the repository at this point in the history
* Adding triggers

* Fixing name of reports
  • Loading branch information
aasimkhan30 authored Aug 2, 2024
1 parent 4480c50 commit 7ae2ffd
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/daily-build-and-test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: Daily CI/CD
name: CI
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -66,7 +72,7 @@ jobs:
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: 'Unit Test'
name: 'Unit Test Report'
path: ./test-reports/**/*.xml
reporter: jest-junit
badge-title: 'unit-tests'
Expand All @@ -93,7 +99,7 @@ jobs:
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Coverage
name: Unit Test Coverage Report
conclusion: ${{ steps.testcoverage.conclusion }}
output: |
{"summary":"${{ steps.testcoverage.summary }}"}
Expand Down Expand Up @@ -133,10 +139,7 @@ jobs:
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: 'Smoke Test'
name: 'Smoke Test Report'
path: ./test-reports/**/smoke-results.xml
reporter: jest-junit
badge-title: 'smoke-tests'



badge-title: 'smoke-tests'

0 comments on commit 7ae2ffd

Please sign in to comment.