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

66 lines
881 B
YAML
Raw Normal View History

2020-04-16 12:34:36 +02:00
image: weboaks/node-karma-protractor-chrome
stages:
- pages
- test
2020-04-21 10:50:26 +02:00
# - e2e
2020-04-16 12:34:36 +02:00
cache:
paths:
- node_modules/
pages:
stage: pages
script:
- yarn install --pure-lockfile
2020-05-12 19:16:23 +02:00
- yarn build
- mv dist/framadate/ public/
artifacts:
paths:
- public
expire_in: '2 hours'
only:
- develop
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/
cache:
policy: pull
2020-04-16 12:34:36 +02:00
test-build:
stage: test
script:
- yarn install --pure-lockfile
- npx ng build --prod
only:
- master
cache:
policy: pull
#e2e:
# stage: e2e
# script:
# - npm i
# - pkill Xvfb
# - npm run e2e
#pages:
# stage: .post
# dependencies:
# - test
# script:
# - mv coverage/ public/
# artifacts:
# paths:
# - public
# expire_in: 30 days
# only:
# - master