Skip to content

Commit 71026fb

Browse files
committed
ci: add modify-reports step to GitHub Actions workflows
1 parent c261efc commit 71026fb

15 files changed

+143
-108
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ dist/
33
node_modules/
44
coverage/
55
templates/
6+
scripts/
7+

.github/workflows/ai-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/cli.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run build:npm
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Summary table
2224
run: node dist/core/cli.js summary ctrf-reports/ctrf-report.json --title "Summary table"
2325
- name: Default tables

.github/workflows/commit-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/community-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/custom-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/detailed-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/failed-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/flaky-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

.github/workflows/previous-action.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
run: npm install
1919
- name: Build
2020
run: npm run all:action
21+
- name: Modify reports
22+
run: npm run modify-reports
2123
- name: Publish Test Report
2224
uses: ./
2325
with:

0 commit comments

Comments
 (0)