Please ensure you have read the Code of Conduct before making any contribution.
Add new issues:
Contributions are made by opening pull requests from a forked copy of the repo. See detailed instructions below.
- Create a fork from the project on Github.
- Clone the fork on your local machine.
- Add the original repository as remote
upstream
. - Create a new
feat/
branch frommaster
. - Commit messages should follow the conventional commits specification.
- Write or update tests if needed.
npm run stryker
can help you reach a better test coverage (stryker-mutator). - Write or update documentation if needed.
- Make sure
npm run test
andnpm run lint
pass. - Push your branch to your fork (
origin
). - Open a pull request from your fork targeting the project's
master
branch. - Wait for the pull request to be approved and merged and pull the changes from the
upstream
remote.