-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
5d3541d
commit 22c4007
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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,28 @@ | ||
executor: node-executor-node-20 | ||
|
||
parameters: | ||
e2e-env-name: | ||
type: string | ||
default: "" | ||
branch-or-commit: | ||
type: string | ||
default: "master" | ||
description: "the branch or commit of the automated-testing repo to reference for source code" | ||
channel: | ||
type: string | ||
default: "test_failures" | ||
description: "the channel where test failures reports will be posted" | ||
mention: | ||
type: string | ||
default: "<!subteam^S07CKAVJPLG>" | ||
steps: | ||
- authenticate_npm | ||
- run: | ||
name: Report Test Failures | ||
command: | | ||
npx --package=@voiceflow/test-cli -- \ | ||
testcli report \ | ||
--environment << parameters.e2e-env-name >> \ | ||
--smokeRef << parameters.branch-or-commit >> \ | ||
--channel << parameters.channel >> \ | ||
--mention '<< parameters.mention >>' |