diff --git a/pipelines/npm.gitlab-ci.yml b/pipelines/npm.gitlab-ci.yml new file mode 100644 index 0000000..ff2b79c --- /dev/null +++ b/pipelines/npm.gitlab-ci.yml @@ -0,0 +1,21 @@ +include: + - "/templates/npm/npm-dependencies.gitlab-ci.yml" + - "/templates/npm/npm-build.gitlab-ci.yml" + - "/templates/npm/npm-verify.gitlab-ci.yml" + - "/templates/npm/npm-lint.gitlab-ci.yml" + - "/templates/npm/npm-e2e.gitlab-ci.yml" + +Dependencies-npm: + extends: .npm-dependencies + +Build-npm: + extends: .npm-build + +Test-npm: + extends: .npm-verify + +Lint-npm: + extends: .npm-lint + +E2E-npm: + extends: .npm-e2e