Skip to content

chore: update metedata #178

chore: update metedata

chore: update metedata #178

Workflow file for this run

name: Code Formatter
on:
workflow_dispatch:
push:
paths:
- "**/*.js"
- "**/*.ts"
- "**/*.md"
- "**/*.json"
- "!.github/**"
jobs:
format:
name: Prettier
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: ${{ vars.PNPM_VERSION }}
run_install: |
args: [--ignore-scripts]
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ vars.NODE_VERSION }}
cache: pnpm
- name: Run Prettier
run: pnpm run prettier
- name: Automatically Commit Changed
uses: stefanzweifel/git-auto-commit-action@v4
with:
push_options: "--force"
commit_options: "--no-verify"
commit_message: "chore(prettier): code formatting"
skip_checkout: true