Skip to content

Commit

Permalink
chore: Update CI/CD workflow to generate and upload consolidated E2E …
Browse files Browse the repository at this point in the history
…Testing Report
  • Loading branch information
Quiirex committed Jun 15, 2024
1 parent f0676e6 commit bb3f367
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ jobs:
- name: Generate testing report
run: |
npx mochawesome-merge "cypress/reports/*.json" > report.json
npx marge report.json --reportFilename "testing_report" --reportTitle "Cypress Report" --reportPageTitle "Cypress Report"
npx marge report.json --reportFilename "e2e_testing_report" --reportTitle "E2E Testing Report" --reportPageTitle "E2E Testing Report"
- name: Upload testing report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: testing_report
name: e2e_testing_report
path: mochawesome-report

security-testing:
Expand All @@ -79,7 +79,7 @@ jobs:
target: 'http://app:3000'

- name: Upload ZAP reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: security-testing-reports
path: security-testing-reports
Expand All @@ -96,7 +96,7 @@ jobs:
run: npm run performance

- name: Upload k6 performance reports
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: performance-testing-reports
path: performance-testing-reports

0 comments on commit bb3f367

Please sign in to comment.