Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.51 KB | None | 0 0
  1.  
  2. build-frontend:
  3.   image: node:latest
  4.   stage: build
  5.   when: manual
  6.   script:
  7.    - . ./BuildScripts/build-frontend.sh
  8.   tags:
  9.    - docker
  10.   artifacts:
  11.     name: "D6 RPG Helper build-frontend ${CI_BUILD_ID}"
  12.     expire_in: 1 week
  13.     when: on_success
  14.     untracked: true
  15.     paths:
  16.      - . ./Frontend/node_modules/
  17.  
  18. test-frontend:
  19.   image: trion/ng-cli-karma
  20.   stage: test
  21.   when: manual
  22.   script:
  23.    - . ./BuildScripts/test-frontend.sh
  24.   tags:
  25.    - docker
  26.   dependencies:
  27.    - build-frontend
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement