Skip to content

Draft: Feature/ci cd

Rishav Jha requested to merge feature/ci-cd into develop

Summary

This PR introduces a .gitlab-ci.yml file that defines the CI/CD pipeline for the frontend React + Vite + TypeScript project. The pipeline automates dependency installation, linting, and production build generation.

📋 Pipeline Overview Stages:

Install Dependencies

  • Uses npm install.

Lint

  • Runs eslint across the codebase to enforce code quality: npm run lint

Build

  • Runs build and stores the output in dist/ as an artifact: npm run build

Merge request reports

Loading