Skip to content

build(deps-dev): bump prettier from 3.8.1 to 3.8.3 #24

build(deps-dev): bump prettier from 3.8.1 to 3.8.3

build(deps-dev): bump prettier from 3.8.1 to 3.8.3 #24

Workflow file for this run

name: conformance with Prettier
on:
push:
paths: ['src/**.ts', '.prettierrc.json']
pull_request:
paths: ['src/**.ts', '.prettierrc.json']
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install # npm ci
- name: Run prettier
run: npm run style:check