👷 — Deploy build on Gitlab page before tests

This commit is contained in:
Luc Didry 2020-06-04 13:50:37 +02:00
parent f1cbf175a9
commit 96354f6202
No known key found for this signature in database
GPG Key ID: EA868E12D0257E3C
1 changed files with 21 additions and 26 deletions

View File

@ -1,36 +1,14 @@
image: weboaks/node-karma-protractor-chrome image: weboaks/node-karma-protractor-chrome
stages: stages:
- test
- pages - pages
- test
# - e2e # - e2e
cache: cache:
paths: paths:
- node_modules/ - node_modules/
test:
stage: test
script:
- npm i
- pkill Xvfb
- npm run test:ci
artifacts:
paths:
- coverage/
cache:
key: "$CI_COMMIT_REF_NAME"
paths:
- node_modules/
test-build:
stage: test
script:
- yarn install --pure-lockfile
- npx ng build --prod
only:
- master
pages: pages:
stage: pages stage: pages
script: script:
@ -43,10 +21,27 @@ pages:
expire_in: '2 hours' expire_in: '2 hours'
only: only:
- develop - develop
cache:
key: "$CI_COMMIT_REF_NAME" test:
stage: test
script:
- npm i
- pkill Xvfb
- npm run test:ci
artifacts:
paths: paths:
- node_modules/ - coverage/
cache:
policy: pull
test-build:
stage: test
script:
- yarn install --pure-lockfile
- npx ng build --prod
only:
- master
cache:
policy: pull policy: pull
#e2e: #e2e: