-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into alberto-read
- Loading branch information
Showing
72 changed files
with
3,516 additions
and
663 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
.github/actions/javascript/validateReassureOutput/action.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: 'Validate Regression Test Output' | ||
description: 'Validates the output of regression tests and determines if a test action should fail.' | ||
inputs: | ||
DURATION_DEVIATION_PERCENTAGE: | ||
description: Allowable percentage deviation for the mean duration in regression test results. | ||
required: true | ||
COUNT_DEVIATION: | ||
description: Allowable deviation for the mean count in regression test results. | ||
required: true | ||
REGRESSION_OUTPUT: | ||
description: Refers to the results obtained from regression tests `.reassure/output.json`. | ||
required: true | ||
runs: | ||
using: 'node16' | ||
main: './index.js' |
Oops, something went wrong.