From 08869cf74165e3b2852bdfa2c5a7dbe9a35d8551 Mon Sep 17 00:00:00 2001 From: Cfp Date: Sun, 22 Jun 2025 16:33:10 +0200 Subject: [PATCH] build: add CI --- .gitea/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..5915712 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,12 @@ +name: TrafficCue CI +on: [push] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - name: Install dependencies + run: bun i + - run: bun run check \ No newline at end of file