Skip to content

Releases: deblockt/cucumber-report-annotations-action

v1.20

28 Jul 19:32
1fd1132

Choose a tag to compare

What's Changed

Full Changelog: v1.19...v1.20

V1.19

28 Jul 19:08
43b5aa8

Choose a tag to compare

What's Changed

  • feat: use warn log when a file can not be found by @deblockt in #66

Full Changelog: v1.18...v1.19

v1.18

03 Jul 18:23
532c771

Choose a tag to compare

What's Changed

Full Changelog: v1.17...v1.18

v1.17

05 Dec 19:13
ad7e47d

Choose a tag to compare

What's Changed

  • feat: set GitHub default token by @duhow in #58

New Contributors

  • @duhow made their first contribution in #58

Full Changelog: v1.16...v1.17

v1.16

19 Apr 07:22
6752fe2

Choose a tag to compare

What's Changed

Full Changelog: v1.15...v1.16

v1.15

21 Mar 20:52
269d53a

Choose a tag to compare

What's Changed

  • feat: support cucumber report message format by @deblockt in #53

Full Changelog: v1.14...v1.15

v1.14

04 Feb 15:12
be7bcca

Choose a tag to compare

What's Changed

  • Upgrade Node 16 (EOL) to Node 20 (TLS) by @phirk in #50

New Contributors

  • @phirk made their first contribution in #50

Full Changelog: v1.13...v1.14

add feature global summary report

15 Dec 20:00
61108ed

Choose a tag to compare

This version add a feature global summary for each feature file.

Capture d’écran 2023-12-15 à 20 54 06

To enable the summary report, you should add show-global-summary-report: "true" configuration.

Add step output

28 Aug 07:11
af1f8e7

Choose a tag to compare

the following variable are availables as output (where output name if the json file name with ' ' replaced by '_' and wihout '.json'):

${output}_failed_scenarios: number of failed scenario
${output}_undefined_scenarios: number of undefined scenario
${output}_pending_scenarios: number of pending scenario
${output}_passed_scenarios: number of passed scenario
${output}_failed_steps: number of failed steps
${output}_undefined_steps: number of undefined steps
${output}_pending_steps: number of pending steps
${output}_passed_steps: number of passed steps

Add capability to fail job

25 Aug 08:21
d45e603

Choose a tag to compare

The new parameter number-of-test-error-to-fail-job can be used to fail job if there are a number of tests in error.
If the parameter value is -1, the job will not fail.