Files
AnimeTV-Frontend/.gitlab-ci.yml
Rafi Arrafif 659a746638 create basic test for gitlab
create basic linting and building test for gitlab
2025-07-11 17:33:23 +07:00

15 lines
243 B
YAML

image: oven/bun:latest
stages:
- test
validate-react:
stage: test
script:
- echo "Install dependencies..."
- bun install
- echo "Menjalankan lint..."
- bun run lint
- echo "Menjalankan build..."
- bun run build