-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0705f3
commit 897d23c
Showing
3 changed files
with
61 additions
and
19 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,17 @@ | ||
|
||
# Supported report process | ||
|
||
1. Danger ✅ | ||
2. Slack (In progress) | ||
|
||
## Danger | ||
|
||
1. Create a new Dangerfile to handle the process checking for leaks. | ||
You can copy `Dangerfile.leaksReport` in the example project. | ||
|
||
2. You can customize the Dangerfile to do your own things. | ||
|
||
### Why do I need to create a separated Dangerfile? | ||
|
||
Because the process checking for leaks will trigger Danger to run. | ||
If you combine the leaks checking Dangerfile and your project Dangerfile to 1 Dangerfile only, the leaks process will execute your Danger logic as well. |
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,17 @@ | ||
|
||
# How to use specific subcommand | ||
|
||
1. Maestro | ||
|
||
## Maestro | ||
|
||
To use Maestro, you need to follow these steps: | ||
|
||
1. Install Maestro. Learn more about `Maestro` [here](https://maestro.mobile.dev/) | ||
2. Create a maestro flow to run simulate the flow in your app. | ||
3. In your ci workflow, just call: | ||
```bash | ||
leaksdetector maestro -p $YOUR_APP_NAME -maestro-flow-path $YOUR_MAESTRO_FILE_PATH | ||
``` | ||
|
||
4. If you want to report the result to your Pull request/Slack/..., please check out the Report section. |
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