Skip to content

Commit 5015805

Browse files
committed
Change report naming
1 parent f536cfa commit 5015805

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,18 @@ jobs:
5555
working-directory: ./backend
5656
run: mvn surefire-report:report-only
5757

58-
- name: Upload Maven Site Report
58+
- name: Upload Backend Building Report
5959
if: success()
6060
uses: actions/upload-artifact@v3
6161
with:
62-
name: maven-site
62+
name: Backend-building-report
6363
path: backend/target/site/
6464

65-
- name: Upload Surefire Report
65+
- name: Upload Backend Test Report
6666
if: success()
6767
uses: actions/upload-artifact@v3
6868
with:
69-
name: surefire-report
69+
name: Backend-test-report
7070
path: backend/target/site/surefire-report.html
7171

7272

@@ -96,21 +96,20 @@ jobs:
9696
working-directory: ./frontend
9797
run: npm run analyze
9898

99-
- name: Upload Bundle Report
99+
- name: Upload Frontend Building Rreport
100100
if: success()
101101
uses: actions/upload-artifact@v3
102102
with:
103-
name: bundle-report
103+
name: Frontend-building-report
104104
path: frontend/bundle-report.html
105-
106105

107106
- name: Run Frontend Tests
108-
working-directory: ./frontend # Adjusted to where karma.conf.js is located
107+
working-directory: ./frontend
109108
run: npm test
110109

111-
- name: Upload coverage report
110+
- name: Upload Frontend Test Report
112111
if: always()
113112
uses: actions/upload-artifact@v3
114113
with:
115-
name: coverage-report
114+
name: Frontend-test-report
116115
path: frontend/coverage

0 commit comments

Comments
 (0)