-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude destinations QA from the core QA tasks, and make them soft fa…
…il (#334) * exclude destination qa from core qa tasks, and add them to a soft fail step * soft fail on any status code * force exit the tests at the end * minor
- Loading branch information
Showing
2 changed files
with
20 additions
and
3 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 |
---|---|---|
|
@@ -15,7 +15,7 @@ steps: | |
paths: ['node_modules/'] | ||
save: true | ||
|
||
- label: ':hammer: QA' | ||
- label: ':perfection: QA' | ||
key: qa | ||
agents: | ||
queue: v1 | ||
|
@@ -35,6 +35,23 @@ steps: | |
queue: v1 | ||
command: 'bk-snyk' | ||
|
||
- label: ':thisisfine: Destinations QA' | ||
key: destinations | ||
agents: | ||
queue: v1 | ||
commands: | ||
- npm config set "//registry.npmjs.org/:_authToken" $${NPM_TOKEN} | ||
- yarn install | ||
- yarn add --dev playwright | ||
- echo "+++ Running Destinations QA Tests :pray:" | ||
- make test-qa-destinations | ||
soft_fail: | ||
- exit_status: '*' | ||
plugins: | ||
- ssh://[email protected]/segmentio/cache-buildkite-plugin#v2.0.0: | ||
key: "v1.1-cache-dev-{{ checksum 'yarn.lock' }}" | ||
paths: ['node_modules/'] | ||
|
||
# Auto deploys branches | ||
- label: ':rocket: Release Branch' | ||
branches: '!master !v*' | ||
|
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