Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1.01 KB

CONTRIBUTING.md

File metadata and controls

32 lines (20 loc) · 1.01 KB

Contributing to JavaScript-Mini-Projects

First off, thank you for considering contributing to JavaScript-Mini-Projects. It's people like you that make JavaScript-Mini-Projects such a great tool.

Where do I go from here?

If you've noticed a bug or have a feature request, make sure to check our issues if there's already an open issue addressing your concerns. If not, feel free to open a new one.

Setting up the development environment

Before you start making changes, you'll need to set up your development environment. Here's how you can do that:

# Clone the repository
git clone https://github.com/username/your-repo.git

# Navigate to the repository
cd your-repo

# Install dependencies
npm install

git checkout -b feature/325-add-jest-testing

# Make your changes and then stage them
git add .

# Commit your changes
git commit -m "Your detailed commit message"

# Run tests
npm test