Thanks for being willing to contribute!
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
- Fork and clone the repo
- Run
npm ci
to install dependencies - Create a branch for your PR with
git checkout -b feature/your-branch-name
Tip: Keep your
develop
branch pointing at the original repository and make pull requests from branches on your fork. To do this, run:git remote add upstream [email protected]:testing-library/testing-playground.git git fetch upstream git branch --set-upstream-to=upstream/develop develop
This will add the original repository as a "remote" called "upstream," Then fetch the git information from that remote, then set your local
develop
branch to use the upstream develop branch whenever you rungit pull
. Then you can make all of your pull request branches based on thisdevelop
branch. Whenever you want to update your version ofdevelop
, do a regulargit pull
.
Please make sure to run the tests before you commit your changes. You can run
npm run test
to do so.
There are git hooks set up with this project that are automatically installed when you install dependencies. They're really handy, and will take care of linting and formatting for you.
Make sure you read our features guidelines.
Please checkout the the open issues
Also, please watch the repo and respond to questions/bug reports/feature requests! Thanks!