23 lines
320 B
YAML
23 lines
320 B
YAML
image: oven/bun:latest
|
|
|
|
stages:
|
|
- lint
|
|
- build
|
|
|
|
before_script:
|
|
- apt-get update -y
|
|
- apt-get install -y curl
|
|
- curl -fsSL https://bun.sh/install | bash
|
|
- export PATH="$HOME/.bun/bin:$PATH"
|
|
- bun install
|
|
|
|
lint:
|
|
stage: lint
|
|
script:
|
|
- bun run lint
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- bun run build
|