Skip to content

Commit 069c7c2

Browse files
Merge pull request #21 from monikakonieczna/Task-15-Update-Readme-File
Task 15: Updating Readme File
2 parents c552f3f + 15f6087 commit 069c7c2

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

.github/workflows/publish-report-2-jobs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish jest report using 2 seperated jobs
1+
name: Publish Sanity Tests Report V2
22

33
on:
44
push:

.github/workflows/publish-report.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
name: Publish Jest Report
1+
name: Publish Sanity Tests Report V2
22

33
on:
4-
push:
5-
branches: ["main"]
64
workflow_dispatch:
75

86
permissions:

README.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,30 @@ This repository includes a GitHub Actions workflow that allows you to run specif
163163
- `multiple_characters`: Runs tests involving multiple characters.
164164
- `filter_characters`: Runs tests that filter characters.
165165

166-
### GitHub Actions - Publish Jest Report as GitHub Page
166+
### GitHub Actions - Publish Sanity Tests Report
167+
This workflow is designed to run sanity tests and publish the resulting report to GitHub Pages. It can be triggered manually using the workflow_dispatch event, allowing you to generate and deploy the report whenever needed.
168+
If you're interested in learning more about GitHub Pages and how to use it, visit <a href="https://docs.github.com/en/pages" style="color:green;">the GitHub Pages Documentation</a>.
167169

168-
### Workflow Details:
170+
### Workflow Details:
171+
- **Triggers:** Manual dispatch using the workflow_dispatch event
172+
- **Workflow File:** [`.github/workflows/publish-report.yml`](.github/workflows/publish-report.yml)
173+
- **Job: Deploy**
174+
This job encompasses all steps required to run the sanity tests and publish the report.
175+
- **Usage**
176+
To trigger this workflow - navigate to the Actions tab in your GitHub repository and manually run the Publish Sanity Tests Report V2 workflow.
177+
178+
### GitHub Actions - Publish Sanity Tests Report V2
179+
This repository includes a GitHub Actions workflow designed to run sanity tests and publish the resulting report to GitHub Pages. The workflow is triggered on pushes to the main branch and can also be executed manually.
180+
181+
### Workflow Details:
182+
- **Triggers:**
183+
- On push to the main branch
184+
- Manual dispatch using the workflow_dispatch event
185+
- **Workflow File:** [`.github/workflows/publish-report-2-jobs.yml`](.github/workflows/publish-report-2-jobs.yml)
186+
- **Jobs**
187+
The workflow consists of two main jobs: test and deploy.
188+
1. Test Job
189+
This job is responsible for running the sanity tests and generating the report.
190+
2. Deploy Job
191+
This job deploys the test report to GitHub Pages.
192+
- **Needs:** This job runs after the test job completes successfully.

0 commit comments

Comments
 (0)