Skip to content

updated elysia to v1.4.16 #9

updated elysia to v1.4.16

updated elysia to v1.4.16 #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: bun run build
- name: Type check
run: bun run type-check
- name: Lint
run: bun run lint
- name: Run tests
run: bun run test