Skip to content

Commit

Permalink
bugfix: fix ctrf report (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
ladamesny authored Nov 15, 2024
1 parent 1bb4588 commit a2d581a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,12 @@ jobs:

- name: Install Ctrf
if: ${{ !cancelled() }}
run: npm install github-actions-ctrf
run: |
cd E2E-tests
npm install github-actions-ctrf
- name: Generate Summary Report
if: ${{ !cancelled() }}
run: |
cd E2E-tests
npx github-actions-ctrf ctrf-report.json
5 changes: 4 additions & 1 deletion .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,12 @@ jobs:

- name: Install Ctrf
if: ${{ !cancelled() }}
run: npm install github-actions-ctrf
run: |
cd E2E-tests
npm install github-actions-ctrf
- name: Generate Summary Report
if: ${{ !cancelled() }}
run: |
cd E2E-tests
npx github-actions-ctrf ctrf-report.json

0 comments on commit a2d581a

Please sign in to comment.