Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
metrics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libs
metrics
Merge requests
!1
Master to main
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Master to main
master
into
main
Overview
0
Commits
41
Pipelines
2
Changes
1
Merged
Sigmund, Dominik
requested to merge
master
into
main
1 year ago
Overview
0
Commits
41
Pipelines
2
Changes
1
0
0
Merge request reports
Viewing commit
d59a744f
Prev
Next
Show latest version
1 file
+
1
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
d59a744f
Update .gitlab-ci.yml
· d59a744f
Sigmund, Dominik
authored
4 years ago
.gitlab-ci.yml
0 → 100755
+
46
−
0
View file @ 797ae40b
Edit in single-file editor
Open in Web IDE
image
:
node:latest
include
:
-
project
:
'
general/templates'
file
:
'
/cicd/SAST-nodejs.gitlab-ci.yml'
-
project
:
'
general/templates'
file
:
'
/cicd/npm-audit.gitlab-ci.yml'
-
project
:
'
general/templates'
file
:
'
/cicd/sonarqube.gitlab-ci.yml'
variables
:
SONAR_PROJECT_KEY
:
metrics
SONAR_TOKEN
:
11922a8e774494f51e1d2f0e695949e4073e7df8
cache
:
paths
:
-
node_modules/
-
docs/
-
dist/
stages
:
-
build
-
test
-
publish
build
:
stage
:
build
script
:
-
npm install
-
npm run build
test
:
stage
:
test
before_script
:
-
npm install -g jest
script
:
-
jest
artifacts
:
paths
:
-
docs/test-report.html
-
docs/coverage/lcov.info
publish
:
stage
:
publish
script
:
-
npm publish
Loading