chore: Fixing coverage push

This commit is contained in:
Justin 2019-08-29 12:39:52 -04:00
parent 571dab74c0
commit 1148acaf18
2 changed files with 6 additions and 10 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@ dist
coverage
.rpt2_cache
.idea
.DS_Store

View File

@ -4,7 +4,6 @@ stages:
- lint
- build
- test
- coverage
- release
notifications:
@ -12,7 +11,6 @@ notifications:
cache:
directories:
- coverage
- dist
jobs:
@ -21,7 +19,7 @@ jobs:
node_js: node
script:
- npm run lint
- npm run lint:doc # Semantic release modified the md files that are not styled correctly.
- prettier --check './*.json' './*.yml'
- &build
stage: build
@ -37,7 +35,8 @@ jobs:
node_js: lts/*
name: 'Unit Tests Latest LTS'
script:
- npm run test:unit -- --collectCoverage
- npm run test:unit -- --coverage
- npm run coverage
- &test-integration
stage: test
@ -53,7 +52,8 @@ jobs:
- echo $GITLAB_URL
- echo $PERSONAL_ACCESS_TOKEN
script:
- npm run test:integration -- --collectCoverage
- npm run test:integration -- --coverage
- npm run coverage
- <<: *test-unit
name: 'Unit Tests Latest'
@ -67,11 +67,6 @@ jobs:
script:
- npm run test:integration
- stage: coverage
node_js: node
script:
- npm run coverage
- stage: release
node_js: node
script: