From a2d581aa8e7ddfc91ea844dd7b8c5b37a8ab493e Mon Sep 17 00:00:00 2001 From: Larry Adames Date: Fri, 15 Nov 2024 12:15:57 -0500 Subject: [PATCH] bugfix: fix ctrf report (#243) --- .github/workflows/devnet.yml | 5 ++++- .github/workflows/staging.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devnet.yml b/.github/workflows/devnet.yml index 9eb5c98dd..836228b28 100644 --- a/.github/workflows/devnet.yml +++ b/.github/workflows/devnet.yml @@ -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 diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 7274adcd6..8a38c9290 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -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