build: reorder CI/CD
Some checks failed
TrafficCue Server CD / build (push) Has been cancelled
TrafficCue Server CI / check (push) Has been cancelled

This commit is contained in:
2025-09-06 12:52:08 +02:00
parent 71b750fa5e
commit 79339e311c
2 changed files with 0 additions and 0 deletions

16
.gitea/workflows/1-ci.yml Normal file
View File

@ -0,0 +1,16 @@
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 .
- run: bun test
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}