Open Issues Need Help
View All on GitHubAI Summary: Create a GitHub Actions workflow (.github/workflows/development-cd.yml) that automatically lints HTML and CSS code using HTMLHint and Stylelint, builds the project (presumably using Parcel, though not explicitly stated in the project description), and deploys the built project to a development environment upon each push to the `develop` branch. The workflow should integrate with the existing project structure and CI/CD pipeline.
AI Summary: Create a GitHub Actions workflow (.github/workflows/dev-pr-validation.yml) that automatically runs HTMLHint, Stylelint, and a Parcel build upon every pull request targeting the `develop` branch. The workflow should ensure code quality and prevent merging of code that fails linting or the build process. The workflow should be triggered by pull requests targeting the `develop` branch.
AI Summary: Create a GitHub Actions workflow that lints, builds (using Parcel), and deploys the TravelEase website to a staging environment upon pushing to the `release` branch. This involves configuring the workflow to handle the project's specific file structure and dependencies, and integrating with the existing CI/CD pipeline.
AI Summary: Create a GitHub Actions workflow (.github/workflows/release-cd.yml) that runs when a pull request targeting the `release` branch is created. This workflow should perform validation checks (likely including HTMLHint, Stylelint, and potentially others mentioned in the project description) to prevent broken code from merging into the staging environment. The workflow should only run on pull requests, not pushes to the `release` branch itself.