Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.42 KB

CONTRIBUTING.md

File metadata and controls

55 lines (43 loc) · 1.42 KB

Contributing to IT-MBTI

We appreciate your interest in contributing to IT-MBTI!

Contributions are what make open-source projects great.

This document will guide you through the process.


🛠 Contributing Pull Requests

  1. Fork the repository:

    Click the "Fork" button on the top-right corner of the repository page on GitHub.

  2. Clone your fork:

git clone https://github.com/OSS-TeamProjectt/IT-MBTI.git
cd it-mbti
  1. Create a new branch:
git checkout -b feature/your-feature-name
  1. Make your changes:

    Implement your feature or fix

  2. Commit your changes:

git commit -m "Add: Your feature description"
  1. Push your changes:
git push origin feature/your-feature-name
  1. Submit a Pull Request (PR):

    Go to the original repository on GitHub and click "New Pull Request." Select your branch and explain your changes.


✅ Writing Unit Tests

We recommend adding unit tests for any bug fixes or new features:

  1. Write tests for both successful and failing cases.
  2. Include your tests in the same pull request as your feature or bug fix.
  3. Ensure all tests pass before submitting your pull request:
npm test

Unit tests ensure the project's reliability and help prevent regressions in future updates.


🙏 Thank you

Thank you for contributing to IT-MBTI! We look forward to collaborating with you to make this project better for everyone.

— The IT-MBTI Development Team