From 659a746638932197456e8adc31bb1d0c27088ef7 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Fri, 11 Jul 2025 17:33:23 +0700 Subject: [PATCH] :white_check_mark: create basic test for gitlab create basic linting and building test for gitlab --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..07d89b1 --- /dev/null +++ b/.gitlab-ci.yml @@ -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