funky-framadate-front/.gitlab-ci.yml

40 lines
484 B
YAML
Raw Normal View History

2020-04-16 12:34:36 +02:00
image: weboaks/node-karma-protractor-chrome
stages:
- test
2020-04-21 10:50:26 +02:00
# - e2e
2020-04-16 12:34:36 +02:00
cache:
paths:
- node_modules/
test:
2020-04-16 12:34:36 +02:00
stage: test
script:
- npm i
- pkill Xvfb
2020-04-21 10:50:26 +02:00
- npm run test:ci
2020-04-16 12:34:36 +02:00
artifacts:
paths:
- coverage/
2020-04-21 10:50:26 +02:00
#e2e:
# stage: e2e
# script:
# - npm i
# - pkill Xvfb
# - npm run e2e
2020-04-16 12:34:36 +02:00
pages:
stage: .post
dependencies:
- test
script:
- mv coverage/ public/
artifacts:
paths:
- public
expire_in: 30 days
only:
- master