Skip to content

🚧 Type definitions for original entities #42

🚧 Type definitions for original entities

🚧 Type definitions for original entities #42

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v1
- name: Bun version
run: bun --version
- name: Node version
run: node --version
- name: Install Bun dependencies
run: bun install --frozen-lockfile
- name: Test (formatting)
run: bun run test:format
- name: Build
run: bun run build