From eed52309c5070140e9a3cb47c532909fbca8e464 Mon Sep 17 00:00:00 2001 From: Alex Munoz Date: Fri, 27 May 2022 11:27:03 +0200 Subject: [PATCH] refactor: add ci prefix --- templates/npm/npm-build.gitlab-ci.yml | 2 +- templates/npm/npm-e2e.gitlab-ci.yml | 2 +- templates/npm/npm-lint.gitlab-ci.yml | 2 +- templates/npm/npm-test.gitlab-ci.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/npm/npm-build.gitlab-ci.yml b/templates/npm/npm-build.gitlab-ci.yml index 4105652..8da8e12 100644 --- a/templates/npm/npm-build.gitlab-ci.yml +++ b/templates/npm/npm-build.gitlab-ci.yml @@ -7,7 +7,7 @@ cd $FRONTEND_DIR fi script: - - npm run build + - npm run ci:build artifacts: expire_in: 2 weeks when: always diff --git a/templates/npm/npm-e2e.gitlab-ci.yml b/templates/npm/npm-e2e.gitlab-ci.yml index b6d32f1..23836c8 100644 --- a/templates/npm/npm-e2e.gitlab-ci.yml +++ b/templates/npm/npm-e2e.gitlab-ci.yml @@ -7,4 +7,4 @@ cd $FRONTEND_DIR fi script: - - npm run e2e + - npm run ci:e2e diff --git a/templates/npm/npm-lint.gitlab-ci.yml b/templates/npm/npm-lint.gitlab-ci.yml index 0cf26ca..779444f 100644 --- a/templates/npm/npm-lint.gitlab-ci.yml +++ b/templates/npm/npm-lint.gitlab-ci.yml @@ -7,4 +7,4 @@ cd $FRONTEND_DIR fi script: - - npm run lint \ No newline at end of file + - npm run ci:lint \ No newline at end of file diff --git a/templates/npm/npm-test.gitlab-ci.yml b/templates/npm/npm-test.gitlab-ci.yml index 525c5ff..ce4f206 100644 --- a/templates/npm/npm-test.gitlab-ci.yml +++ b/templates/npm/npm-test.gitlab-ci.yml @@ -7,4 +7,4 @@ cd $FRONTEND_DIR fi script: - - npm run test + - npm run ci:test