You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository is a beginner-friendly project started by [Women Who Code Front End](https://www.womenwhocode.com/frontend) to learn about front end technologies as well as how to collaborate on an open source project.
4
6
5
7
Currently it is deployed at [https://frontendstudygroup.github.io](https://frontendstudygroup.github.io) using [GitHub Pages](https://pages.github.com/).
@@ -20,11 +22,14 @@ Participation and maintenance of this project is completely voluntary and we are
20
22
- Search in [Issues](https://github.com/frontendstudygroup/frontendstudygroup.github.io/issues) for open issues to work on
21
23
- If you would like to make a suggestion for an enhancement, or report a defect, create an issue
22
24
- Fork the repository (recommended if you are doing this for the first time)
23
-
- Clone your forked repository to your pc ( git clone "url from clone option.)
24
-
-Assign the issue to yourself
25
+
- Clone your forked repository to your machine (`git clone [url from clone option]`)
26
+
-Request to assign the issue for yourself
25
27
- Comment on the issue about your approach to solving the problem
26
28
- Get feedback from other contributors or project maintainers
27
29
- Submit a pull request when you are ready
30
+
- Add a title and small description in the pull request about what you did.
31
+
- Make sure to reference the issue number in the pull request comment with the words _"Fixes #[issue number]"_ or _"Resolves #[issue number]"_ as explained in [GitHub documentation](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword).
32
+
28
33
29
34
Questions about front end? [Join the WWC Front End Slack](https://join.slack.com/t/womenwhocodefrontend/shared_invite/zt-gaic5y90-pDJK4H_NbObZ_MU_rcYc0A) and join the `#fe-beginner-studygroup` channel.
30
35
@@ -50,13 +55,9 @@ See the section about [running tests](https://facebook.github.io/create-react-ap
50
55
51
56
### Deployment
52
57
53
-
Executing the command `npm run build` builds the app for production to the `build` folder.
54
-
It correctly bundles React in production mode and optimizes the build for the best performance.
55
-
56
-
The build is minified and the filenames include the hashes.
57
-
Your app is ready to be deployed!
58
+
There is a GitHub action set up on this repository to build the React app, run tests and deploy to the GitHub Pages site on every merge to the `master` branch.
58
59
59
-
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) in the Create React App documentation for more information.
60
+
Also when a pull request is created or updated, the GitHub action will build the React app and run tests. If the build or tests fail, the pull request will be blocked from merging until they are resolved.
0 commit comments