From fc794fdbe80c256c7730197a1644a3c3512fc298 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Sat, 7 Jun 2025 12:15:36 +0200 Subject: [PATCH] Create instructions file for Copilot --- .../instructions/test-reporter.instructions.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/instructions/test-reporter.instructions.md diff --git a/.github/instructions/test-reporter.instructions.md b/.github/instructions/test-reporter.instructions.md new file mode 100644 index 0000000..ae566e8 --- /dev/null +++ b/.github/instructions/test-reporter.instructions.md @@ -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.