ci: add gitea build and docker publish workflows
CI / build-frontend (push) Failing after 1m8s
Docker Publish / publish-images (push) Failing after 5s

This commit is contained in:
2026-02-23 10:56:29 +01:00
parent 7e659b86bf
commit ad1e58d405
3 changed files with 104 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
- name: Install deps
run: npm ci
- name: Build
run: npm run build
- name: Validate lobby server syntax
run: node --check server/lobby.js