Skip to content

Refactor code style for consistency and add Prettier configuration #19

Refactor code style for consistency and add Prettier configuration

Refactor code style for consistency and add Prettier configuration #19

Workflow file for this run

name: CI
on:
push:
branches: [main, "**"]
pull_request:
branches: [main, "**"]
jobs:
build-and-test:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install dependencies
run: npm ci
- name: Build library
run: npm run build:vite
- name: Check formatting
run: npm run format:check
- name: Run tests
run: npm test -- --reporter=dot