Skip to content

Commit

Permalink
Revert "Revert "Format code with prettier take 2"" (#730)
Browse files Browse the repository at this point in the history
* Revert "Revert "Format code with prettier take 2 (#728)" (#729)"

This reverts commit dff70e0.

* change .prettierrc

* Add jsxSingleQuote to .prettierrc to align with eslint used in build
  • Loading branch information
nimzco authored Aug 24, 2024
1 parent 6828f7d commit fcde35a
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Format Code with Prettier

on:
pull_request:
branches:
- "main"

jobs:
format:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v3
with:
# ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Run Prettier
run: npm run prettier

- name: Check for changes
id: check_changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "changes_detected=true" >> $GITHUB_ENV
else
echo "changes_detected=false" >> $GITHUB_ENV
fi
- name: Commit and Push changes
if: env.changes_detected == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "chore: fix formatting issues"
git push origin HEAD:${{ github.head_ref }}
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2,
"useTabs": false
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"test": "node scripts/test.js",
"lint": "eslint .",
"format": "eslint --fix .",
"prettier": "npx prettier --write \"**/*.{ts,tsx,}\"",
"precommit": "lint-staged",
"predeploy": "npm run build",
"prepare": "husky"
Expand Down

0 comments on commit fcde35a

Please sign in to comment.