Skip to content

Conversation

hoangsonww
Copy link
Owner

No description provided.

@hoangsonww hoangsonww requested a review from Copilot June 21, 2025 05:18
@hoangsonww hoangsonww self-assigned this Jun 21, 2025
@hoangsonww hoangsonww added documentation Improvements or additions to documentation enhancement New feature or request labels Jun 21, 2025
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Adds a GitHub Actions workflow to enforce code formatting and linting on pushes and pull requests.

  • Introduces a CI/CD pipeline YAML defining formatting and a final status job.
  • Configures triggers on the master branch for push and pull_request events.
Comments suppressed due to low confidence (3)

.github/workflows/ci.yml:5

  • The workflow only triggers on pushes and PRs to 'master', but if your default branch is named 'main', these events won't run. Consider updating to 'main' or adding both branch names.
    branches: [master]

.github/workflows/ci.yml:16

  • Using 'continue-on-error: true' for critical steps like checkout, setup-node, install, format, and lint suppresses failure signals. Remove these flags so the pipeline fails on errors.
        continue-on-error: true

.github/workflows/ci.yml:10

  • The CI pipeline currently only runs formatting and linting. Consider adding build and test jobs to ensure application functionality is validated in CI.
  formatting:

@hoangsonww hoangsonww merged commit 2ad0980 into master Jun 21, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant