Skip to content
Snippets Groups Projects
Commit 4159bf08 authored by Victor Löfgren's avatar Victor Löfgren
Browse files

config: Only run tests on merge or dev and run only when needed

parent 0e286ff2
No related branches found
No related tags found
No related merge requests found
client:setup: client:setup:
image: node:10 image: node:10
stage: setup stage: setup
only:
refs:
- dev
- merge_requests
changes:
- client/**/*
script: script:
- cd client - cd client
- npm install - npm install
...@@ -21,6 +27,12 @@ client:linting: ...@@ -21,6 +27,12 @@ client:linting:
image: node:10 image: node:10
stage: test stage: test
needs: ["client:setup"] needs: ["client:setup"]
only:
refs:
- dev
- merge_requests
changes:
- server/**/*
script: script:
- cd client - cd client
- npm run lint - npm run lint
...@@ -29,8 +41,13 @@ client:test: ...@@ -29,8 +41,13 @@ client:test:
image: node:10 image: node:10
stage: test stage: test
needs: ["client:setup"] needs: ["client:setup"]
only:
refs:
- dev
- merge_requests
changes:
- server/**/*
script: script:
- cd client - cd client
- npm run test:coverage - npm run test:coverage
coverage: /All files\s*\|\s*([\d\.]+)/ coverage: /All files\s*\|\s*([\d\.]+)/
server:setup: server:setup:
image: python image: python
stage: setup stage: setup
only:
refs:
- dev
- merge_requests
changes:
- server/**/*
artifacts: artifacts:
paths: paths:
- server/env - server/env
...@@ -22,6 +28,12 @@ server:test: ...@@ -22,6 +28,12 @@ server:test:
image: python image: python
stage: test stage: test
needs: ["server:setup"] needs: ["server:setup"]
only:
refs:
- dev
- merge_requests
changes:
- server/**/*
script: script:
- cd server - cd server
- source env/bin/activate - source env/bin/activate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment