Skip to content

0.5.0

0.5.0 #34

Workflow file for this run

name: Quality
on:
- push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Quality
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install --frozen-lockfile
- name: TypeScript
run: bun run test:types
- name: Prettier
run: bun run test:format
- name: Vitest
run: yarn test:unit