GitHub Code Push Checklist
Before pushing the code to GitHub, please follow the steps below:
-
Run Prettier to check for formatting issues:
npx prettier --check .
-
Run Prettier to automatically fix formatting issues:
npx prettier --write .
-
Build the project:
npm run build
After running these commands, proceed with the following steps:
-
Add all changes to the staging area:
git add .
-
Commit the changes with a meaningful message and sign the commit:
git commit -am "<message>" -S
Please refer to the documentation for more details on each command and its usage.
Thank you!