From ffe78d1163cabdf1d1737d15bb36fd68cc4661f2 Mon Sep 17 00:00:00 2001 From: Dimitrios Giannopoulos <dimit.giannopoulos@upnet.gr> Date: Tue, 19 Dec 2023 10:34:19 +0000 Subject: [PATCH] added newlines --- .gitlab-ci.yml | 2 +- ci-templates/default.yml | 2 +- ci-templates/dependencies.yml | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 ci-templates/dependencies.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4e7798e..745ab5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,4 +3,4 @@ include: - ci-templates/build.yml maven_build: - extends: .maven_build \ No newline at end of file + extends: .maven_build diff --git a/ci-templates/default.yml b/ci-templates/default.yml index fe3bdc3..e27f757 100644 --- a/ci-templates/default.yml +++ b/ci-templates/default.yml @@ -19,4 +19,4 @@ stages: fi # rules: # - if: $CI_COMMIT_REF_NAME == "main" - # - if: $CI_COMMIT_REF_NAME == "develop" \ No newline at end of file + # - if: $CI_COMMIT_REF_NAME == "develop" diff --git a/ci-templates/dependencies.yml b/ci-templates/dependencies.yml new file mode 100644 index 0000000..8ec3c9f --- /dev/null +++ b/ci-templates/dependencies.yml @@ -0,0 +1,5 @@ +install_node_dependencies: + stage: install + image: node:latest + script: + - npm install -- GitLab