Skip to content

Commit 932b344

Browse files
[fix] fix minor issues flagged by Vale bot
1 parent 6049f5b commit 932b344

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

content/guides/reactjs/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: React.js language-specific guide
33
linkTitle: React.js
44
description: Containerize and develop React.js apps using Docker
5-
keywords: getting started, React.js, react.js, docker, language, dockerfile
5+
keywords: getting started, React.js, react.js, docker, language, Dockerfile
66
summary: |
77
This guide explains how to containerize React.js applications using Docker.
88
toc_min: 1
@@ -21,7 +21,7 @@ The React.js language-specific guide shows you how to containerize a React.js ap
2121

2222
>
2323
> **Acknowledgment**
24-
> Docker extends its sincere gratitude to [Krisityan Velkov](https://www.linkedin.com/in/kristiyan-velkov-763130b3/) for authoring this guide. As a Docker Captain and experienced Front-end engineer, his expertise in Docker, DevOps, and modern web development has made this resource invaluable for the community, helping developers navigate and optimize their Docker workflows.
24+
> Docker extends its sincere gratitude to [Kristiyan Velkov](https://www.linkedin.com/in/kristiyan-velkov-763130b3/) for authoring this guide. As a Docker Captain and experienced Front-end engineer, his expertise in Docker, DevOps, and modern web development has made this resource invaluable for the community, helping developers navigate and optimize their Docker workflows.
2525
2626
---
2727

content/guides/reactjs/configure-ci-cd.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configure CI/CD for your React.js application
33
linkTitle: Configure CI/CD
44
weight: 50
5-
keywords: ci/cd, github actions, React.js, next
5+
keywords: CI/CD, GitHub( Actions), React.js, Next.js
66
description: Learn how to configure CI/CD using GitHub Actions for your React.js application.
77
aliases:
88
- /language/react.js/configure-ci-cd/
@@ -65,7 +65,7 @@ To enable GitHub Actions to build and push Docker images, you’ll securely stor
6565
| `DOCKERHUB_TOKEN` | Your Docker Hub access token (created in Step 1) |
6666
| `DOCKERHUB_PROJECT_NAME` | Your Docker Project Name (created in Step 2) |
6767

68-
These secrets allow GitHub Actions to authenticate securely with Docker Hub during automated workflows.
68+
These secrets let GitHub Actions to authenticate securely with Docker Hub during automated workflows.
6969

7070
5. **Connect Your Local Project to GitHub**
7171

@@ -123,20 +123,20 @@ Once completed, your code will be available on GitHub, and any GitHub Actions wo
123123

124124
> [!NOTE]
125125
> **Learn more about the Git commands used in this step:**
126-
> - [git add](https://git-scm.com/docs/git-add) – Stage changes (new, modified, deleted) for commit
127-
> - [git commit](https://git-scm.com/docs/git-commit) – Save a snapshot of your staged changes
128-
> - [git push](https://git-scm.com/docs/git-push) – Upload local commits to your GitHub repository
129-
> - [git remote](https://git-scm.com/docs/git-remote) – View and manage remote repository URLs
126+
> - [Git add](https://git-scm.com/docs/git-add) – Stage changes (new, modified, deleted) for commit
127+
> - [Git commit](https://git-scm.com/docs/git-commit) – Save a snapshot of your staged changes
128+
> - [Git push](https://git-scm.com/docs/git-push) – Upload local commits to your GitHub repository
129+
> - [Git remote](https://git-scm.com/docs/git-remote) – View and manage remote repository URLs
130130

131131
---
132132

133133
### Step 2: Set up the workflow
134134

135135
Now you'll create a GitHub Actions workflow that builds your Docker image, runs tests, and pushes the image to Docker Hub.
136136

137-
1. Go to your repository on GitHub and click the **Actions** tab in the top menu.
137+
1. Go to your repository on GitHub and select the **Actions** tab in the top menu.
138138

139-
2. Click **Set up a workflow yourself** when prompted.
139+
2. Select **Set up a workflow yourself** when prompted.
140140

141141
This opens an inline editor to create a new workflow file. By default, it will be saved to:
142142
`.github/workflows/main.yml`
@@ -238,7 +238,7 @@ jobs:
238238
cache-from: type=local,src=/tmp/.buildx-cache
239239
```
240240

241-
**This workflow performs the following tasks for your Dockerized React.js application:**
241+
**This workflow performs the following tasks for your React.js application:**
242242
- **Triggers** on every `push` or `pull request` targeting the `main` branch.
243243
- **Builds a development Docker image** using `Dockerfile.dev`, optimized for testing.
244244
- **Executes unit tests** using Vitest inside a clean, containerized environment to ensure consistency.

0 commit comments

Comments
 (0)