CI/CD Workflow

Expalin CI/CD workflow

This project uses GitHub Actions for continuous integration. The workflow includes:

  • Trigger: Runs on push to main branch and pull requests

  • Environment: Ubuntu latest with Node.js 20

  • Steps: i. Code checkout ii. Node.js and pnpm setup iii. Dependencies installation iv. Linting check v. Build verification vi. Security audit

You can view the workflow configuration in

.github/workflows/code-check.yml

Last updated