mirror of
https://github.com/dorny/test-reporter.git
synced 2026-03-22 07:52:14 +01:00
25 lines
436 B
YAML
25 lines
436 B
YAML
name: Manual run
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-dist:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- run: npm test
|
|
|
|
- name: Create test report
|
|
uses: ./
|
|
if: ${{ !cancelled() }}
|
|
with:
|
|
name: JEST Tests
|
|
path: __tests__/__results__/*.xml
|
|
reporter: jest-junit
|