From 181e07010a4ea78df0df072cf0c3b118c2da4c3d Mon Sep 17 00:00:00 2001
From: Benedikt Seeger <benedikt.seeger@ptb.de>
Date: Fri, 28 Feb 2025 10:07:25 +0100
Subject: [PATCH] added proxy config

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3e26ef0..942b693 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,8 @@ cache:
 test:
   stage: test
   script:
+    - npm config set https-proxy http://webproxy.bs.ptb.de:8080
+    - npm config set http-proxy http://webproxy.bs.ptb.de:8080
     - npm install
     - npm run test
   artifacts:
@@ -20,6 +22,8 @@ test:
 build:
   stage: build
   script:
+    - npm config set https-proxy http://webproxy.bs.ptb.de:8080
+    - npm config set http-proxy http://webproxy.bs.ptb.de:8080
     - npm install
     - npm run build
   artifacts:
-- 
GitLab