Files
AnimeTV-Frontend/.gitlab-ci.yml
Rafi Arrafif 1a0dba6903 💚 (fix-ci) fix gitlab ci error
remove additional step before execution except `bun install` because nessecary module need to be installed first.
2025-09-13 13:35:04 +07:00

19 lines
186 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