Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Last active January 30, 2019 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seogi1004/4c59ecbeef71ad1896b6ca3125f3f32d to your computer and use it in GitHub Desktop.
Save seogi1004/4c59ecbeef71ad1896b6ca3125f3f32d to your computer and use it in GitHub Desktop.
Frontend:
extends: .Job_Only
image: node:10
stage: frontend
before_script:
- npm install
script:
- npm test
after_script:
- npm run dist
coverage: /All files\s*\|\s*([\d\.]+)/
Backend:
extends: .Job_Only
image: maven:3.3.9
stage: backend
script:
- mvn install -Dmaven.repo.local=.m2/repository --batch-mode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment