From 55a082b7ebe6d8935c639a8c7d2bdd2ddba0eae7 Mon Sep 17 00:00:00 2001 From: Cfp Date: Sun, 22 Jun 2025 17:56:01 +0200 Subject: [PATCH] build: add CI --- .gitea/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 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..396d420 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,13 @@ +name: TrafficCue Server 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: bunx eslint + - run: bunx prettier --check . \ No newline at end of file