Update .gitlab-ci.yml file

This commit is contained in:
Pritimay Sarkar
2024-01-11 05:36:44 +00:00
parent d19f3549e0
commit 6895562d9e

18
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,18 @@
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