From 53671023bd1c37c99f5c9ed22555d8e4b1a31844 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <p.gawron@atcomp.pl>
Date: Thu, 25 Apr 2024 16:29:11 +0200
Subject: [PATCH] install with ci

---
 .gitlab-ci.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a2f33322..b1cb91f4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -13,7 +13,7 @@ lint:commit:
   allow_failure: true
   before_script:
     - apk add --no-cache npm git
-    - npm install
+    - npm ci
   script:
     - echo "${CI_COMMIT_MESSAGE}" | npx commitlint
 
@@ -22,7 +22,7 @@ linter:
   stage: lint
   before_script:
     - apk add --no-cache npm git
-    - npm install
+    - npm ci
   script:
     - npm run lint:ts
   only:
@@ -35,7 +35,7 @@ prettier:
   stage: prettier
   before_script:
     - apk add --no-cache npm git
-    - npm install
+    - npm ci
   script:
     - npm run prettier:ci
   only:
@@ -49,7 +49,7 @@ jest:
   coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
   before_script:
     - apk add --no-cache npm git
-    - npm install
+    - npm ci
   script:
     - npm run test:ci
   only:
-- 
GitLab