Skip to content

Remove Buffer option entirely #12

Remove Buffer option entirely

Remove Buffer option entirely #12

Workflow file for this run

name: Verify Code Quality
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check formatting with Prettier
run: npm run format:check
- name: Lint code with ESLint
run: npm run lint:check
- name: Build project
run: npm run build