mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Remove "Create test report" step from PR check runs
This commit is contained in:
parent
75b0cadf5f
commit
a5c5b636ff
2 changed files with 22 additions and 8 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -27,11 +27,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: __tests__/__results__/*.xml
|
path: __tests__/__results__/*.xml
|
||||||
|
|
||||||
- name: Create test report
|
|
||||||
uses: ./
|
|
||||||
if: success() || failure()
|
|
||||||
with:
|
|
||||||
name: JEST Tests
|
|
||||||
path: __tests__/__results__/*.xml
|
|
||||||
reporter: jest-junit
|
|
||||||
|
|
|
||||||
22
.github/workflows/manual-run.yml
vendored
Normal file
22
.github/workflows/manual-run.yml
vendored
Normal file
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue