Skip to content

chore!: bump typescript version from v5 to v6 #23

chore!: bump typescript version from v5 to v6

chore!: bump typescript version from v5 to v6 #23

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