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