Skip to content

fix: buffer type

fix: buffer type #21

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@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm install # npm ci
- name: Run prettier
run: npm run style:check