18 lines
291 B
YAML
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 |