create github action
All checks were successful
CI / build (push) Successful in 19s
CI / lint (push) Successful in 8s

This commit is contained in:
2025-08-28 13:08:32 +02:00
parent 1e634ed122
commit e17829e7fa

32
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
container:
image: oven/bun
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
lint:
runs-on: ubuntu-latest
container:
image: oven/bun
steps:
- uses: actions/checkout@v4
- name: Install Biome
run: bun install -g biome
- name: Biome Check
run: biome check
- name: Biome Lint
run: biome lint