Skip to content

chore: use bun instead of npm #95

chore: use bun instead of npm

chore: use bun instead of npm #95

Workflow file for this run

name: CI
on:
- push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 5
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.38
- name: Install dependencies
run: bun install
- name: Check linting
run: bun run lint
- name: Check formatting
run: bun run format:check
- name: Run tests
run: bun run test:coverage