create basic test for gitlab

create basic linting and building test for gitlab
This commit is contained in:
2025-07-11 17:33:23 +07:00
parent 060ceb8f32
commit 659a746638

14
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,14 @@
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