19 lines
204 B
YAML
19 lines
204 B
YAML
image: oven/bun:latest
|
|
|
|
stages:
|
|
- lint
|
|
- build
|
|
|
|
before_script:
|
|
- bun install
|
|
|
|
lint:
|
|
stage: lint
|
|
script:
|
|
- bun run lint
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- bun run build
|