Files
AnimeTV-Frontend/.gitlab-ci.yml
Rafi Arrafif e4a19d4e41 💚 (fix-ci) fix gitlab ci error
install curl first before using it
2025-09-13 13:32:24 +07:00

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