feat(pipelines): initial npm/js pipeline

This commit is contained in:
Alex Munoz 2022-05-24 14:38:25 +02:00 committed by Marcel Feix
parent 36efdb707b
commit 60ecb92bd9
No known key found for this signature in database
GPG Key ID: 04D016E104A25F03

View File

@ -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