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