| 1234567891011121314151617181920212223242526272829 |
- stages:
- - test
- variables:
- APP_ENV: ci
- before_script:
- - echo "" > ./local.app-v3.opentalent.fr.crt
- - echo "" > ./local.app-v3.opentalent.fr.key
- cache:
- paths:
- - ./node_modules
- unit:
- stage: test
- script:
- - yarn install
- - yarn test
- artifacts:
- paths:
- - ./coverage/
- when: always
- reports:
- coverage_report:
- coverage_format: cobertura
- path: coverage/cobertura-coverage.xml
|