fix(deps): update dependency @vercel/analytics to v2 #2518
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 check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| name: Format check | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: ["lts/*"] | |
| steps: | |
| - name: π§± Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: π© Setup PNPM | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| standalone: true | |
| - name: π© Setup Node ${{ matrix.node }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| cache: "pnpm" | |
| - name: π Install dependencies | |
| run: pnpm install | |
| - name: π Check formatting | |
| run: "npm run format:check" |