Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 771 Bytes

PR_TEMPLATE.md

File metadata and controls

32 lines (21 loc) · 771 Bytes

InnoLab Frontend Pull Request Template

Changes

Description of changes goes here.

Pre Commit Checklist

  1. Ensure code meets linting standards,
yarn run lint
  1. Ensure all new functionality is covered by unit tests. Run the tests locally and make sure coverage hasn't gone down,
yarn run test:cover
  1. Document code with comments where appropriate.

  2. Pull the latest version of Dev and merge with it locally (git pull && git merge Dev) before opening a PR request into Dev.

Reviewer Checklist

  • [] Application builds locally
  • [] Unit tests pass locally
  • [] Code passes linting style check
  • [] All dead code has been removed
  • [] No secrets or credentials have been committed
  • [] No merge conflicts with target branch