{"id":28451277,"url":"https://github.com/test-results-reporter/publish","last_synced_at":"2026-04-15T16:04:17.266Z","repository":{"id":267605421,"uuid":"901739605","full_name":"test-results-reporter/publish","owner":"test-results-reporter","description":"Github Action for testbeats publish command","archived":false,"fork":false,"pushed_at":"2025-06-02T23:03:50.000Z","size":1824,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-06T16:11:28.781Z","etag":null,"topics":["ci","github","github-actions","test-reporting","test-results","testbeats"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/testbeats-publish","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/test-results-reporter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-11T08:20:23.000Z","updated_at":"2025-04-22T01:42:28.000Z","dependencies_parsed_at":"2024-12-11T10:35:29.371Z","dependency_job_id":"113ba0b6-b859-4e59-8386-1f12f52b6e0c","html_url":"https://github.com/test-results-reporter/publish","commit_stats":null,"previous_names":["test-results-reporter/publish"],"tags_count":9,"template":false,"template_full_name":"actions/typescript-action","purl":"pkg:github/test-results-reporter/publish","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-results-reporter%2Fpublish","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-results-reporter%2Fpublish/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-results-reporter%2Fpublish/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-results-reporter%2Fpublish/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/test-results-reporter","download_url":"https://codeload.github.com/test-results-reporter/publish/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/test-results-reporter%2Fpublish/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262861572,"owners_count":23376250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ci","github","github-actions","test-reporting","test-results","testbeats"],"created_at":"2025-06-06T16:10:42.119Z","updated_at":"2026-04-15T16:04:12.234Z","avatar_url":"https://github.com/test-results-reporter.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cspan align=\"center\"\u003e\n\n![logo](https://github.com/test-results-reporter/testbeats/raw/main/assets/logo.png)\n\n# TestBeats Publish GitHub Action\n\n![CI](https://github.com/test-results-reporter/publish/actions/workflows/ci.yml/badge.svg)\n[![Check dist/](https://github.com/test-results-reporter/publish/actions/workflows/check-dist.yml/badge.svg)](https://github.com/test-results-reporter/publish/actions/workflows/check-dist.yml)\n[![CodeQL](https://github.com/test-results-reporter/publish/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/test-results-reporter/publish/actions/workflows/codeql-analysis.yml)\n![Coverage](./badges/coverage.svg)\n\n[![Stars](https://img.shields.io/github/stars/test-results-reporter/publish?style=social)](https://github.com/test-results-reporter/publish/stargazers)\n\nGitHub Action for\n[testbeats](https://github.com/test-results-reporter/testbeats) publish command.\n\nRead more about the project at https://testbeats.com\n\n\u003c/span\u003e\n\n## How to use TestBeats Publish GitHub Action\n\nBelow is an example of Testbeats action in a workflow file. To include the\naction in a workflow, you can use the `uses` syntax with the `@` symbol to\nreference a specific branch, tag, or commit hash.\n\n#### Example Workflow using `config` file\n\n```yaml\n# .github/workflows/testbeats.yml\n# This workflow will publish test results to slack\nsteps:\n  - name: Checkout\n    id: checkout\n    uses: actions/checkout@v4\n\n  - name: Install Dependencies\n    id: npm-ci\n    run: npm ci\n\n  - name: Test\n    id: npm-ci-test\n    run: npm run test\n\n  - name: TestBeats Publish\n    uses: test-results-reporter/publish@v1\n    with:\n      config: .testbeats.json # TestBeats configuration file path\n```\n\n#### Example Workflow using CLI params\n\n```yaml\n# .github/workflows/testbeats.yml\n# This workflow will publish test results to slack including CI info and chart test summary\nsteps:\n  - name: Checkout\n    id: checkout\n    uses: actions/checkout@v4\n\n  - name: Install Dependencies\n    id: npm-ci\n    run: npm ci\n\n  - name: Test\n    id: npm-ci-test\n    run: npm run test\n\n  - name: TestBeats Publish\n    uses: test-results-reporter/publish@v1\n    with:\n      slack: ${{ secrets.SLACK_WEBHOOK_URL }}\n      mocha: ./test/mocha/results.xml\n      ci-info: true\n      chart-test-summary: true\n```\n\n### Example Workflow using CLI params and testbeats api key\n\n```yaml\n# .github/workflows/testbeats.yml\n# This workflow will publish test results to TestBeats\nsteps:\n  - name: Checkout\n    id: checkout\n    uses: actions/checkout@v4\n\n  - name: Install Dependencies\n    id: npm-ci\n    run: npm ci\n\n  - name: Test\n    id: npm-ci-test\n    run: npm run test\n\n  - name: TestBeats Publish\n    uses: test-results-reporter/publish@v1\n    with:\n      slack: ${{ secrets.SLACK_WEBHOOK_URL }}\n      mocha: ./test/mocha/results.xml\n      api-key: ${{ secrets.TESTBEATS_API_KEY }}\n      project: ${{ github.repository }} # Optional\n      run: ${{ github.branch_name }} # Optional\n```\n\n## Support\n\nLike this project! ⭐ Star it on\n[Github](https://github.com/test-results-reporter/publish/stargazers) and follow\non [Twitter](https://twitter.com/testbeatsapp). Your support means a lot to us.\n\n## Contributors\n\nIf you've ever wanted to contribute to open source, and a great cause, now is\nyour chance! See the\n[contributing docs](https://github.com/test-results-reporter/publish/blob/master/CONTRIBUTING.md)\nfor more information.\n\nThanks to all the people who contribute.\n\n\u003ca href=\"https://github.com/test-results-reporter/publish/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=test-results-reporter/publish\" /\u003e\n\u003c/a\u003e\n\u003cbr /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftest-results-reporter%2Fpublish","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftest-results-reporter%2Fpublish","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftest-results-reporter%2Fpublish/lists"}