diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 8a253d3..ee967ff 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -2,25 +2,25 @@ name: Code Format Check on: push: - branches: [ main ] + branches: [main] pull_request: - branches: [ main ] + branches: [main] jobs: check-format: runs-on: ubuntu-latest steps: - - name: Check out code - uses: actions/checkout@v4 + - name: Check out code + uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '21' + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '21' - - name: Install dependencies - run: yarn install --frozen-lockfile + - name: Install dependencies + run: yarn install --frozen-lockfile - - name: Check code format - run: yarn prettier --check --ignore-path .prettierignore . + - name: Check code format + run: yarn prettier --check --ignore-path .prettierignore .