быть выложен на гитлабе в данном скрипте?
stages:
- test
- build
- deploy
code_quality:
image: node:14.17.4
stage: test
before_script:
- npm ci
script:
- npm run eslint
- npm run stylelint
- npm run prettier-check
only:
- merge_requests
test:
image: node:14.17.4
stage: test
allow_failure: true
before_script:
- npm ci
script:
- npm run test
only:
- merge_requests
build:
image: node:14.17.4
stage: build
before_script:
- npm ci
script:
- npm run build
artifacts:
paths:
- dist
only:
- merge_requests
- master
deploy:
image: node:14.17.4
pages:
stage: deploy
before_script:
- npm install
script:
- npm run build
- cp -r dist public
artifacts:
paths:
- public
only:
- master
Что значит «выложен на гитлабе»?
на гитлаб пейджес
Обсуждают сегодня