From a5c5b636fff0f57f2160925e7faa32e478f8d669 Mon Sep 17 00:00:00 2001 From: Michal Dorner Date: Wed, 30 Nov 2022 18:23:12 +0100 Subject: [PATCH] Remove "Create test report" step from PR check runs --- .github/workflows/ci.yml | 8 -------- .github/workflows/manual-run.yml | 22 ++++++++++++++++++++++ 2 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 .github/workflows/manual-run.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b38d0dfe..f4adeb22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,11 +27,3 @@ jobs: with: name: test-results path: __tests__/__results__/*.xml - - - name: Create test report - uses: ./ - if: success() || failure() - with: - name: JEST Tests - path: __tests__/__results__/*.xml - reporter: jest-junit diff --git a/.github/workflows/manual-run.yml b/.github/workflows/manual-run.yml new file mode 100644 index 00000000..90a91107 --- /dev/null +++ b/.github/workflows/manual-run.yml @@ -0,0 +1,22 @@ +name: Manual run + +on: + workflow_dispatch: + +jobs: + check-dist: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - run: npm ci + - run: npm run build + - run: npm test + + - name: Create test report + uses: ./ + if: success() || failure() + with: + name: JEST Tests + path: __tests__/__results__/*.xml + reporter: jest-junit