This repository was archived by the owner on Sep 13, 2025. It is now read-only.
build(deps): bump @nuxtjs/i18n from 10.0.5 to 10.0.6 (#259) #1099
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Prettier" | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, reopened, ready_for_review, synchronize] | |
| merge_group: | |
| workflow_dispatch: | |
| jobs: | |
| prettier-check: | |
| name: Check code formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download repo | |
| uses: actions/checkout@v5 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Use Node.js v20.15.0 | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "20.15.0" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Check code with Prettier | |
| run: pnpm exec prettier --check . |