update server on main changes
Some checks failed
CI / lint (push) Successful in 10s
CI / build (push) Successful in 9s
Build Docker Image / build-and-push-docker (push) Has been cancelled

This commit is contained in:
2025-08-28 15:47:45 +02:00
parent 194b0b58ed
commit 63f906bb02
3 changed files with 30 additions and 14 deletions

View File

@@ -7,17 +7,6 @@ on:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
container:
image: oven/bun
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: bun install
- name: Build
run: bun run build
lint:
runs-on: ubuntu-latest
container:
@@ -29,4 +18,16 @@ jobs:
- name: Biome Check
run: biome check
- name: Biome Lint
run: biome lint
run: biome lint
build:
runs-on: ubuntu-latest
needs: lint
container:
image: oven/bun
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: bun install
- name: Build
run: bun run build