diff --git a/src/jobs/android_test.yml b/src/jobs/android_test.yml index 3b6c813..571810f 100644 --- a/src/jobs/android_test.yml +++ b/src/jobs/android_test.yml @@ -39,6 +39,10 @@ parameters: type: enum enum: ["fatal", "error", "warn", "info", "verbose", "trace"] default: warn + store_artifact_path: + description: Stores detox artifacts at CircleCI + type: string + default: "" on_after_initialize: description: Set this to true if you want to run a custom shell command right after yarn install. Provide the command in on_after_initialize_command type: boolean @@ -77,3 +81,8 @@ steps: - detox_test: configuration: <> loglevel: <> + - when: + condition: <> + steps: + - store_artifacts: + path: <> \ No newline at end of file diff --git a/src/jobs/ios_build_and_test.yml b/src/jobs/ios_build_and_test.yml index 1409d39..a956a04 100644 --- a/src/jobs/ios_build_and_test.yml +++ b/src/jobs/ios_build_and_test.yml @@ -58,6 +58,10 @@ parameters: type: enum enum: ["fatal", "error", "warn", "info", "verbose", "trace"] default: warn + store_artifact_path: + description: Stores detox artifacts at CircleCI + type: string + default: "" on_after_initialize: description: A custom command to run right after yarn install. type: string @@ -108,3 +112,8 @@ steps: - detox_test: configuration: <> loglevel: <> + - when: + condition: <> + steps: + - store_artifacts: + path: <> \ No newline at end of file