From f813d964428cff8f25acb6d1e678581659131944 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 16 Jul 2023 14:47:27 +0100 Subject: [PATCH] Install cURL in CI --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 74e4d21..87272f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,8 @@ static: key: npm-$CI_COMMIT_REF_SLUG paths: - "$CI_PROJECT_DIR/.npm-cache" + before_script: + - apt update && apt install --yes curl script: - npm ci --cache .npm-cache --prefer-offline - npm run build