*Coming Soon
npm run dev: Start development servernpm run build: Build for productionnpm run lint: Run ESLint checksnpm run format: Format code with Prettiernpm run test: Run Vitest unit testsnpm run test:e2e: Run Playwright E2E testsnpm run preview: Preview the production build locally
The project uses GitHub Actions for CI/CD. On Every push to main and pull requests:
- Lints the code.
- Runs unit tests.
- Runs E2E tests using Playwright.
- Deploys the application to GitHub Pages (on push to
mainonly).
Prerequisites: Node.js
- Install dependencies:
npm install - Run the app:
npm run dev
