Skip to content

feat: move to input file as source of truth (#75) #249

feat: move to input file as source of truth (#75)

feat: move to input file as source of truth (#75) #249

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Check linting and formatting
run: bun check
- name: Ensure no diff
run: git diff --exit-code -- ':!bun.lockb'