Skip to content

Update: Changing on Dependencies #111

Update: Changing on Dependencies

Update: Changing on Dependencies #111

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and test code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install packages
run: bun install
- name: TSC check
run: bun tsc --noEmit
- name: Run eslint
run: bun lint
- name: Test
run: bun test