4 Open Issues Need Help Last updated: Jul 4, 2025

Open Issues Need Help

View All on GitHub

AI 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.

Complexity: 4/5
enhancement good first issue

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.

Complexity: 3/5
enhancement good first issue

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.

Complexity: 3/5
enhancement good first issue

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.

Complexity: 4/5
good first issue