Skip to content

Merge pull request #6 from 7nohe/feat/performance-caching #39

Merge pull request #6 from 7nohe/feat/performance-caching

Merge pull request #6 from 7nohe/feat/performance-caching #39

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run build
run: bun run build
- name: Run tests
run: bun test
- name: Run check (lint + format)
run: bun run check
- name: Run typecheck
run: bun run typecheck