This repository was created as part of my QA training to learn Continuous Integration (CI) using GitHub Actions.
The project demonstrates how automated workflows can be configured to execute tests and validate code changes whenever updates are pushed to the repository.
- GitHub Actions
- YAML
- Git
- JavaScript
- Node.js
- Continuous Integration (CI)
- Automated workflow execution
- Automatic test execution
- YAML workflow configuration
- Version control with Git
.github/
└── workflows/
.gitignore
package.json
The pipeline automatically runs whenever changes are pushed to the repository.
Typical workflow:
- Checkout repository
- Install dependencies
- Execute automated tests
- Report execution status
- Continuous Integration
- GitHub Actions
- CI Pipelines
- YAML
- Git
- Automation Testing