This instruction explains how to work with React tasks on Github
Forkthe repositoryClonethe forked repo- Run
npm installto install the dependencies - Create a branch for you solution (e.g.
git checkout -b develop)
- Run
npm startto run a development server athttp://localhost:3000(If you need to stop the server pressctrl + cin the terminal window)You should open a new command line window for all the next commands
- Write the code inside the
src/folder following the style guides: - Open one more terminal and run tests with
npm testto ensure your solutions is correct - Run
npm run lintto check the code style and fix all the errors add,commitandpushall the recent changes- Run
npm run deployto publish your solution to Github pages
- Create a
Pull Request(PR) fromthe-forked-repo/developtothe-original-repo/master - Put your Github username into the
DEMO LINK(above the task description) and add it to thePRdescription
In order to update the PR repeat the steps 2-5 from the
Develop the solutionsection