19 lines
182 B
YAML
19 lines
182 B
YAML
default:
|
|
image: oven/bun
|
|
|
|
stages:
|
|
- build
|
|
- lint
|
|
|
|
build:
|
|
tags:
|
|
- linux
|
|
|
|
|
|
lint:
|
|
tags:
|
|
- linux
|
|
script:
|
|
- bun install -g biome
|
|
- biome check
|
|
- biome lint |