Skip to content

Bump next from 14.2.4 to 14.2.10 in the npm_and_yarn group across 1 d… #2374

Bump next from 14.2.4 to 14.2.10 in the npm_and_yarn group across 1 d…

Bump next from 14.2.4 to 14.2.10 in the npm_and_yarn group across 1 d… #2374

Workflow file for this run

name: Format
on:
push:
branches:
- "**"
- "!main"
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install prettier
run: pnpm install --frozen-lockfile
- name: Check prettier compliance
run: pnpm exec prettier --check './apps/**/*.{ts,tsx}'