- Changed the web server configuration to specify the URL as 'http://localhost:3000' for improved clarity in local development.
</message>
<message>feat(ci-pipeline): add artifact upload and download steps in CI workflow
- Introduced steps to upload the build output as an artifact after the build job.
- Added a step to download the build output artifact before running Playwright tests, ensuring the tests have access to the latest build.
- Modified the web server command to use 'npm run start' in CI environments and 'npm run dev' locally.
- Changed the URL from 'http://127.0.0.1:3000' to 'http://localhost:3000' for consistency.
- Added a port specification for clarity.
- Added Playwright configuration for end-to-end testing.
- Integrated Vitest for unit testing with setup files.
- Updated package.json scripts for testing commands.
- Created CI pipeline for automated testing and builds.
- Added various test cases for components and pages.
- Updated .gitignore to exclude Playwright and coverage.
- Enhanced ModsList component with additional class for styling.