Skip to content

lint

lint #32

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
schedule:
- cron: '0 0 * * 0'
permissions:
contents: read
jobs:
test-bun:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Check format
run: bun run format:check
- name: Run tests
run: bun test
- name: Run tests with Hono framework
run: USE_HONO=1 bun test