Skip to content

chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 (#192) #415

chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 (#192)

chore(deps-dev): bump picomatch from 2.3.1 to 2.3.2 (#192) #415

name: Format Code
on:
workflow_dispatch:
push:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install Dependencies
run: npm ci
- name: Run Format
run: npm run format
- name: Set GitHub identity
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Commit and Push Changes
run: |
git add .
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "chore(format): apply automated formatting changes"
git push
fi