Files
monitor-im-flur/.gitlab-ci.yml

19 lines
218 B
YAML

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