- Changed the dependency of the Playwright job to run after the build job instead of the setup job, ensuring the correct execution order in the CI workflow.
- 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.
- Changed the dependency of the Playwright job to run after the setup job instead of the build job, ensuring proper execution order in the CI workflow.
- Introduced a new Playwright job that runs after the build job.
- Added steps for checking out the repository, setting up Node.js, restoring node_modules from cache, installing dependencies, and installing Playwright browsers.
- Included a step to run Playwright tests, enhancing the CI pipeline with automated testing capabilities.
- Consolidated Playwright job into a build job for clarity.
- Removed Playwright browser installation and test execution steps to simplify the workflow.
- Moved Playwright browser installation and project build steps to the appropriate locations in the CI pipeline.
- Removed redundant cache paths for Playwright, optimizing the workflow.
- 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.