Files
hpos-web/.gitlab-ci.yml
Pritimay Sarkar b69791c246 add test ci script
2024-01-21 11:38:34 +05:30

18 lines
283 B
YAML

stages:
- test
unit-test:
image: node:latest
stage: test
before_script:
- npm install
script:
- npm run test-ci
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
artifacts:
paths:
- coverage/
when: always
reports:
junit:
- junit.xml