Files
monitor-im-flur/.gitlab-ci.yml
2025-08-27 22:54:09 +02:00

23 lines
258 B
YAML

default:
image: oven/bun
stages:
- build
- lint
build:
stage: build
tags:
- linux
script:
- bun install
- bun run build
lint:
stage: lint
tags:
- linux
script:
- bun install -g biome
- biome check
- biome lint