Files
hpos-web/.gitlab-ci.yml
2024-02-11 14:17:28 +05:30

18 lines
291 B
YAML

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