Skip to content

Contributing Guidelines

Marco Vanali edited this page Jan 24, 2022 · 2 revisions

Check the repository of the project on github.

  1. Fork the repo.
  2. Clone the repo locally.
git clone git@github.com:<your-username>/newskit.git
cd newskit
yarn install
  1. Checkout to develop branch.
git checkout develop
  1. Check the existing issues tab.
  2. Branch out from develop branch using the following naming convention: <type>/<issue-id>-<name-describing-the-change>, where type is fix for bugfix, feat for feature and docs for documentation.
git checkout -b <type>/<issue-id>-<name-describing-the-change>
  1. When you're ready with your contribution run the tests locally.
yarn test:unit:run -u
  1. Commit and push.
git commit
git push origin <issue-id>-<name-describing-the-change>
  1. Open a pull request.
  2. Attent to feedback.
  3. Success. Thank you.
Clone this wiki locally