Skip to content

Commit

Permalink
Remove "Create test report" step from PR check runs
Browse files Browse the repository at this point in the history
  • Loading branch information
dorny committed Nov 30, 2022
1 parent 75b0cad commit a5c5b63
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
22 changes: 22 additions & 0 deletions .github/workflows/manual-run.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a5c5b63

Please sign in to comment.