Skip to content

chore: bump version to 0.2.3 and update changelog #16

chore: bump version to 0.2.3 and update changelog

chore: bump version to 0.2.3 and update changelog #16

Workflow file for this run

name: Code Quality
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check code formatting
run: npx prettier --check src/ test/
- name: Run linting
run: npm run lint
- name: Type checking
run: npx tsc --noEmit -p tsconfig.dev.json