Skip to content

Update reporter

Update reporter #57

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
checks: write
steps:
- uses: actions/checkout@v3
- name: Use Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: '22.x'
- run: npm ci
- run: npm run build
- run: npm run test:ci
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
with:
report_paths: 'junit-reports/*.xml'
annotate_only: ${{ github.event.pull_request.head.repo.full_name != github.repository }}