From 1b171ed4bbb8c23bbb09d015aa813cac0aeec327 Mon Sep 17 00:00:00 2001 From: Alex Munoz Date: Fri, 27 May 2022 10:02:49 +0200 Subject: [PATCH] refactor: minor changes --- pipelines/npm.gitlab-ci.yml | 5 +++++ templates/npm/npm-build.gitlab-ci.yml | 2 +- templates/npm/npm-dependencies.gitlab-ci.yml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pipelines/npm.gitlab-ci.yml b/pipelines/npm.gitlab-ci.yml index bdacc52..f467cf9 100644 --- a/pipelines/npm.gitlab-ci.yml +++ b/pipelines/npm.gitlab-ci.yml @@ -1,3 +1,8 @@ +stages: + - dependencies + - build + - verify + include: - '/templates/npm/npm-dependencies.gitlab-ci.yml' - '/templates/npm/npm-build.gitlab-ci.yml' diff --git a/templates/npm/npm-build.gitlab-ci.yml b/templates/npm/npm-build.gitlab-ci.yml index e52adde..4105652 100644 --- a/templates/npm/npm-build.gitlab-ci.yml +++ b/templates/npm/npm-build.gitlab-ci.yml @@ -12,4 +12,4 @@ expire_in: 2 weeks when: always paths: - - "**/dist/" + - '**/dist/' diff --git a/templates/npm/npm-dependencies.gitlab-ci.yml b/templates/npm/npm-dependencies.gitlab-ci.yml index 7177855..4fd3c3b 100644 --- a/templates/npm/npm-dependencies.gitlab-ci.yml +++ b/templates/npm/npm-dependencies.gitlab-ci.yml @@ -11,4 +11,4 @@ artifacts: expire_in: 1 days paths: - - "**/node_modules" + - '**/node_modules'