Skip to content

Commit a2d581a

Browse files
authored
bugfix: fix ctrf report (#243)
1 parent 1bb4588 commit a2d581a

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/devnet.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,12 @@ jobs:
148148

149149
- name: Install Ctrf
150150
if: ${{ !cancelled() }}
151-
run: npm install github-actions-ctrf
151+
run: |
152+
cd E2E-tests
153+
npm install github-actions-ctrf
152154
153155
- name: Generate Summary Report
154156
if: ${{ !cancelled() }}
155157
run: |
158+
cd E2E-tests
156159
npx github-actions-ctrf ctrf-report.json

.github/workflows/staging.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,12 @@ jobs:
149149

150150
- name: Install Ctrf
151151
if: ${{ !cancelled() }}
152-
run: npm install github-actions-ctrf
152+
run: |
153+
cd E2E-tests
154+
npm install github-actions-ctrf
153155
154156
- name: Generate Summary Report
155157
if: ${{ !cancelled() }}
156158
run: |
159+
cd E2E-tests
157160
npx github-actions-ctrf ctrf-report.json

0 commit comments

Comments
 (0)