👷 create ci script for gitea

creating build test using gitea runner for first time
This commit is contained in:
2025-07-11 23:37:26 +07:00
parent 659a746638
commit 3894838e7e

25
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,25 @@
name: Bun CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-testing:
runs-on: docker
container:
image: oven/bun:latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: bun install
- name: Running lint
run: bun run lint
- name: Running build
run: bun run build