Skip to content
Snippets Groups Projects

Issue/6 improve testing coverage for client

Merged Albin Henriksson requested to merge issue/6-improve-testing-coverage-for-client into dev
3 files
+ 32
3
Compare changes
  • Side-by-side
  • Inline
Files
3
client:setup:
image: node:10
stage: setup
only:
refs:
- dev
- merge_requests
changes:
- client/**/*
script:
- cd client
- npm install
@@ -21,6 +27,12 @@ client:linting:
image: node:10
stage: test
needs: ["client:setup"]
only:
refs:
- dev
- merge_requests
changes:
- client/**/*
script:
- cd client
- npm run lint
@@ -29,8 +41,13 @@ client:test:
image: node:10
stage: test
needs: ["client:setup"]
only:
refs:
- dev
- merge_requests
changes:
- client/**/*
script:
- cd client
- npm run test:coverage
coverage: /All files\s*\|\s*([\d\.]+)/
Loading