From 1e305c75bd43b36af4d6690886054ef70a17d0a7 Mon Sep 17 00:00:00 2001 From: Hugo Pointcheval Date: Sun, 11 Dec 2022 21:28:47 -0500 Subject: [PATCH] docs: update readme with melos commands --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index babeca68..b6ec3314 100644 --- a/README.md +++ b/README.md @@ -171,10 +171,16 @@ Note that your issue will be close after merging on master. Before closing the issue, please check tests and update coverage. You might run : ```shell -melos run test -melos run gen_coverage +melos run test:all # this will run all tests in this project +melos run gen-coverage # this will generate coverage report +melos run gen-class-models # this will generate plantuml class diagrams +melos run quality-check # this will run all targets generally expected in CI +melos run publish:validate # this will run a validation before publish packages +melos run publish # this will publish packages ``` +> Note that only modified package will be verified and published. + #### Merge your work After closing your issue, some work may have been done on master in the meantime. To keep a clean git history, please rebase before opening a change request.