Skip to content
Snippets Groups Projects

Resolve "Improve gitlab pipelines"

Merged Victor Löfgren requested to merge issue/5-improve-gitlab-pipelines into dev
2 files
+ 9
11
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 14faa799
    #5: Test needs instead of dependencies · 14faa799
    Victor Löfgren authored
client-setup:
client:setup:
image: node:10
stage: setup
script:
@@ -17,21 +17,20 @@ client-setup:
- client/.npm/
- client/node_modules/
client-linting:
client:linting:
image: node:10
stage: test
needs: ["client:setup"]
script:
- cd client
- npm run lint
dependencies:
- client-setup
client-test:
client:test:
image: node:10
stage: test
needs: ["client:setup"]
script:
- cd client
- npm run test:coverage
dependencies:
- client-setup
coverage: /All files\s*\|\s*([\d\.]+)/
Loading