Skip to content

trying different test reporter #10

trying different test reporter

trying different test reporter #10

Workflow file for this run

name: Node.js CI Tests and Coverage
# Controls when the workflow will run on any branch
on:
pull_request:
# Define the jobs for this workflow
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Merge Results
run: npm run merge
if: always()
- name: Create Report
run: npm run report
if: always()
- name: Report NYC coverage
uses: sidx1024/[email protected]
if: always()
with:
coverage_file: "nyc-coverage-report/coverage-summary.json"
- name: Test Report
uses: n-ryu/[email protected]
with:
path: **/test-results.xml

Check failure on line 44 in .github/workflows/coverage.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coverage.yml

Invalid workflow file

You have an error in your yaml syntax on line 44
name: "Test Results"
if: always()