gilde-ci-cd/pipelines/npm.gitlab-ci.yml
2022-07-08 09:55:51 +02:00

32 lines
578 B
YAML

stages:
- dependencies
- build
- verify
include:
- '/templates/common/common-ci-variablen.gitlab-ci.yml'
- '/templates/npm/npm-dependencies.gitlab-ci.yml'
- '/templates/npm/npm-build.gitlab-ci.yml'
- '/templates/npm/npm-test.gitlab-ci.yml'
- '/templates/npm/npm-lint.gitlab-ci.yml'
- '/templates/npm/npm-e2e.gitlab-ci.yml'
variables:
FRONTEND_DIR: ''
FRONTEND_BUILD_DIR: 'dist'
Dependencies-npm:
extends: .npm-dependencies
Build-npm:
extends: .npm-build
Test-npm:
extends: .npm-test
Lint-npm:
extends: .npm-lint
E2E-npm:
extends: .npm-e2e