Compare commits

..

1 Commits

Author SHA1 Message Date
Jozef Izso
fc794fdbe8 Create instructions file for Copilot 2025-07-08 10:57:23 +02:00
4 changed files with 18 additions and 15 deletions

View File

@@ -0,0 +1,15 @@
---
applyTo: '**'
---
Instructions:
- Ensure Node.js 20 is installed and used for all development and CI tasks.
- Do not update the Node.js runtime to versions newer than 20.
- Install all dependencies using `npm install`.
- Use TypeScript for all source code; ensure `tsconfig.json` is present and configured.
- Use `npm test` to run tests; ensure all tests pass before committing changes.
- Validate changes by running `npm run all` before submitting pull requests or merging.
- This project is a GitHub Actions action; ensure compatibility with GitHub Actions workflows.
- After validating changes, create a new commit with the `dist/` directory included.
- Document any changes to the action's inputs, outputs, or behavior in the README.

View File

@@ -1,17 +1,5 @@
# Changelog
## 2.1.1
* Fix error when a TestMethod element does not have a className attribute in a trx file https://github.com/dorny/test-reporter/pull/623
* Add stack trace from trx to summary https://github.com/dorny/test-reporter/pull/615
* List only failed tests https://github.com/dorny/test-reporter/pull/606
* Add type definitions to `github-utils.ts` https://github.com/dorny/test-reporter/pull/604
* Avoid split on undefined https://github.com/dorny/test-reporter/pull/258
* Return links to summary report https://github.com/dorny/test-reporter/pull/588
* Add step summary short summary https://github.com/dorny/test-reporter/pull/589
* Fix for empty TRX TestDefinitions https://github.com/dorny/test-reporter/pull/582
* Increase step summary limit to 1MiB https://github.com/dorny/test-reporter/pull/581
* Fix input description for list options https://github.com/dorny/test-reporter/pull/572
## 2.1.0
* Feature: Add summary title https://github.com/dorny/test-reporter/pull/568
* Feature: Add Golang test parser https://github.com/dorny/test-reporter/pull/571

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "test-reporter",
"version": "2.1.1",
"version": "2.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "test-reporter",
"version": "2.1.1",
"version": "2.1.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",

View File

@@ -1,6 +1,6 @@
{
"name": "test-reporter",
"version": "2.1.1",
"version": "2.1.0",
"private": true,
"description": "Presents test results from popular testing frameworks as Github check run",
"main": "lib/main.js",