Update .gitlab/.gitlab-ci.yml file
This commit is contained in:
parent
0c93aa34e2
commit
d21bd3e79c
@ -2,25 +2,24 @@ image: node:16
|
|||||||
|
|
||||||
npm:
|
npm:
|
||||||
stage: build
|
stage: build
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- dist
|
|
||||||
expire_in: 1 week
|
|
||||||
cache:
|
cache:
|
||||||
- key:
|
- key:
|
||||||
files:
|
files:
|
||||||
- package.json
|
- package-lock.json
|
||||||
paths:
|
paths:
|
||||||
- node_modules
|
- node_modules
|
||||||
- package-lock.json
|
|
||||||
policy: pull-push
|
policy: pull-push
|
||||||
- key: $CI_PIPELINE_ID
|
- key: $CI_PIPELINE_ID
|
||||||
paths:
|
paths:
|
||||||
- dist
|
- dist
|
||||||
policy: push
|
policy: push
|
||||||
script:
|
script:
|
||||||
- npm i
|
- npm install
|
||||||
- npm run build
|
- npm run build
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- dist
|
||||||
|
expire_in: 1 week
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_BRANCH
|
- if: $CI_COMMIT_BRANCH
|
||||||
|
|
||||||
@ -29,22 +28,19 @@ audit:
|
|||||||
cache:
|
cache:
|
||||||
- key:
|
- key:
|
||||||
files:
|
files:
|
||||||
- package.json
|
- package-lock.json
|
||||||
paths:
|
paths:
|
||||||
- node_modules
|
- node_modules
|
||||||
policy: pull
|
policy: pull
|
||||||
script:
|
script:
|
||||||
- AUDIT=$(npm audit)
|
- echo "vulnerabilities_high $(npm audit | grep -oE '[0-9]+ high' | grep -oE '[0-9]+' || echo 0)" > metrics.txt
|
||||||
- echo "vulnerabilities_high $(echo $AUDIT | grep -oE '[0-9]+ high' | grep -oE '[0-9]+' || echo 0)" > metrics.txt
|
- echo "vulnerabilities_medium $(npm audit | grep -oE '[0-9]+ moderate' | grep -oE '[0-9]+' || echo 0)" >> metrics.txt
|
||||||
- echo "vulnerabilities_medium $(echo $AUDIT | grep -oE '[0-9]+ moderate' | grep -oE '[0-9]+' || echo 0)" >> metrics.txt
|
- echo "vulnerabilities_low $(npm audit | grep -oE '[0-9]+ low' | grep -oE '[0-9]+' || echo 0)" >> metrics.txt
|
||||||
- echo "vulnerabilities_low $(echo $AUDIT | grep -oE '[0-9]+ low' | grep -oE '[0-9]+' || echo 0)" >> metrics.txt
|
|
||||||
- echo "$AUDIT"
|
|
||||||
artifacts:
|
artifacts:
|
||||||
reports:
|
reports:
|
||||||
metrics: metrics.txt
|
metrics: metrics.txt
|
||||||
rules:
|
rules:
|
||||||
- if: $CI_COMMIT_BRANCH
|
- if: $CI_COMMIT_BRANCH
|
||||||
allow_failure: true
|
|
||||||
|
|
||||||
registry:
|
registry:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
@ -71,11 +67,10 @@ tag:
|
|||||||
entrypoint: [""]
|
entrypoint: [""]
|
||||||
cache: []
|
cache: []
|
||||||
before_script:
|
before_script:
|
||||||
- git remote set-url origin "https://Tagger:$DEPLOY_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git"
|
- git remote set-url origin "https://ReleaseBot:$DEPLOY_TOKEN@$CI_SERVER_HOST/$CI_PROJECT_PATH.git"
|
||||||
script:
|
script:
|
||||||
- VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')
|
- VERSION=$(cat package.json | grep version | grep -Eo ':.+' | grep -Eo '[[:alnum:]\.\/\-]+')
|
||||||
- git tag -f $VERSION $CI_COMMIT_SHA
|
- git tag -f $VERSION $CI_COMMIT_SHA
|
||||||
- git push -f origin $VERSION
|
- git push -f origin $VERSION
|
||||||
rules:
|
rules:
|
||||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||||
allow_failure: true
|
|
||||||
|
Loading…
Reference in New Issue
Block a user