Files
hpos-web/.gitlab-ci.yml
2024-01-11 05:39:10 +00:00

18 lines
280 B
YAML

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