Skip to content

Release v1.8.1: report link layout fix on the beta layout, wxt 0.21 and CI updates #79

Release v1.8.1: report link layout fix on the beta layout, wxt 0.21 and CI updates

Release v1.8.1: report link layout fix on the beta layout, wxt 0.21 and CI updates #79

name: Prettier Check
on:
pull_request:
branches: [main, dev]
types: [opened, reopened, synchronize, ready_for_review]
jobs:
prettier:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.draft == false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: lts/*
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Prettier check
run: pnpm run format:check