Skip to content

chore: release 2.9.1 #589

chore: release 2.9.1

chore: release 2.9.1 #589

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: oven-sh/setup-bun@v1
- name: Install
run: bun install
- name: Lint files
run: bun run lint
- name: Type check files
run: bun run tsc
- name: Run tests
run: bun run test