Skip to content

prettierを設定

prettierを設定 #9

Workflow file for this run

name: Format Files
on:
- push
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: yarn
- run: yarn run prettier --check '**/**.{yml,md}'