Adding instructions for using Prettier to push changes to the production site#32
Conversation
…ion site; Disabling Prettier formatting checks for deployment Actions
1e0d31c to
8c71ed0
Compare
There was a problem hiding this comment.
Pull Request Overview
This PR removes automated Prettier formatting checks from the CI pipeline and adds manual instructions for developers to run Prettier before pushing changes to ensure proper code formatting.
- Removes the "prettier" job from the GitHub Actions workflow matrix
- Eliminates the automated Prettier formatting check step from CI
- Adds documentation instructing developers to manually run Prettier before pushing commits
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| src/app/contact/page.tsx | Applies Prettier formatting to consolidate multi-line description into single line |
| README.md | Adds IMPORTANT section with manual Prettier instructions for developers |
| .github/workflows/nextjs.yml | Removes automated Prettier checks from CI workflow |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| strategy: | ||
| matrix: | ||
| job: ["prettier", "build"] | ||
| job: ["build"] |
There was a problem hiding this comment.
Removing automated Prettier checks from CI reduces code quality enforcement. Consider keeping the Prettier check but making it non-blocking (using continue-on-error: true) or adding it as a separate non-required status check to maintain consistent formatting across contributions.
|
|
||
| ### IMPORTANT | ||
|
|
||
| _Please ensure that, before pushing any commits which introduce changes to the site, that you run the following:_ |
There was a problem hiding this comment.
Remove the redundant 'that' in this sentence. It should read: 'Please ensure that, before pushing any commits which introduce changes to the site, you run the following:'
| _Please ensure that, before pushing any commits which introduce changes to the site, that you run the following:_ | |
| _Please ensure that, before pushing any commits which introduce changes to the site, you run the following:_ |
No description provided.