Skip to content

chore: simplify publishArgs formatting in package.json #42

chore: simplify publishArgs formatting in package.json

chore: simplify publishArgs formatting in package.json #42

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
working-directory: ./package
- run: bun run lint
working-directory: ./package
- run: bun run typecheck
working-directory: ./package
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
working-directory: ./package
- run: bun run test:coverage
working-directory: ./package