23 lines
258 B
YAML
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 |