Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 658 Bytes

definition_of_done.md

File metadata and controls

16 lines (13 loc) · 658 Bytes

Definition of Done

What criteria are required to be met before a working feature from a user story can be merged onto the main branch?

  1. User Story exists as project issue in project TODO list.
  2. Feature exists in a working branch. Ex. working_authentication
  3. Feature fulfills criteria of acceptance from user story issue.
  4. Code is peer reviewed.
  5. UI changes follow the style guide / design system.
  6. Edge cases are considered.
  7. Feature is tested multi-platform.
  8. Automated unit tests are passed on Pull Request.
  9. Feature is successfully merged onto main branch.
  10. Required documentation is written.
  11. Documentation is proof read.