Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- variables:
- CLI_VERSION: 9.1.12
- stages:
- - test
- - build-test
- - build-prod
- test:
- stage: test
- only:
- - master
- - test
- image: trion/ng-cli:${CLI_VERSION}
- before_script:
- - npm ci
- script:
- - ng lint
- tags:
- - docker
- build-test:
- stage: build-test
- only:
- - test
- image: trion/ng-cli:${CLI_VERSION}
- before_script:
- - npm ci
- script:
- - ng build --configuration=test
- artifacts:
- expire_in: 1 day
- paths:
- - dist/
- tags:
- - docker
- build-prod:
- stage: build-prod
- only:
- - master
- image: trion/ng-cli:${CLI_VERSION}
- before_script:
- - npm ci
- script:
- - ng build --prod
- artifacts:
- expire_in: 1 day
- paths:
- - dist/
- tags:
- - docker
Advertisement
Add Comment
Please, Sign In to add comment