Skip to content

chore(deps): bump dompurify from 3.3.1 to 3.3.3 #190

chore(deps): bump dompurify from 3.3.1 to 3.3.3

chore(deps): bump dompurify from 3.3.1 to 3.3.3 #190

Workflow file for this run

name: Lint and Format Check
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
name: Run Linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: 25
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Next.js lint check
run: pnpm lint
- name: Run dprint format check
run: pnpm format:check