From 266ba065e06bc039c99cf14266f39ebaa6333a62 Mon Sep 17 00:00:00 2001
From: Julian <leuckerj@gmail.com>
Date: Wed, 28 May 2025 13:16:11 +0000
Subject: [PATCH] Update pipeline config to not ignore lint

---
 .gitlab-ci.yml | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4ff320b..90841a8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,10 +1,22 @@
 # The Docker image that will be used to build your app
-image: node:lts
+image: node:latest
+
+stages:
+  - test
+  - pages
+
 # Functions that should be executed before the build script is run
 before_script:
-  - npm ci
+  - npm install
   - mkdir public
+
+lint-test-job:
+  stage: test
+  script:
+    - npm run lint
+
 pages:
+  stage: pages
   script:
     - npm run docs:build
     - mv docs/.vuepress/dist/* public
-- 
GitLab