Before submitting a pull request, please make sure the following is done:
- Fork the repository and create your branch from develop.
- Follow the local setup steps here.
- Make your changes following the CODING GUIDELINES.
- If you've fixed a bug or added code that should be tested, add tests!
- Add an entry to the changelog (
pnpm changeset
). - Make sure that the code passes linter (
pnpm lint
andpnpm pretty
). - Make sure the code passes unit and end to end tests (
pnpm test
andpnpm e2e
).
Depending on the purpose every git branch should be prefixed.
feat/
: when adding a new featurefix/
: when fixing an existing bugrefactor/
: when refactoring
We use the standard Conventional Commits specification and enforce it using commitlint.