lint_fe
This commit is contained in:
Marco Zeisler 2021-05-11 17:37:25 +02:00
parent 6f6132b7a6
commit bfb291836b

View File

@ -20,15 +20,24 @@ stages:
# BUILD # BUILD
################################################################# #################################################################
build_fe: #build_fe:
script: # image: node:alpine
- echo '' # script:
extends: # - echo ''
- .build # extends:
# - .build
build_be: build_be:
image: python:3.8-slim
before_script:
- apt-get update
- apt-get install -y build-essential gcc
- python -m venv /opt/venv
- python -m pip install --upgrade pip
script: script:
- echo '' - python setup.py sdist
artifacts:
untracked: true
extends: extends:
- .build - .build
@ -37,20 +46,21 @@ build_be:
################################################################# #################################################################
lint_fe: lint_fe:
image: node:alpine
script: script:
- echo '' - npm run -- ng lint
extends: extends:
- .lint - .lint
needs: # needs:
- build_fe # - build_fe
lint_be: #lint_be:
script: # script:
- echo '' # - echo ''
extends: # extends:
- .lint # - .lint
needs: # needs:
- build_be # - build_be
######## ########
# TEST # TEST
@ -70,7 +80,7 @@ test_be:
extends: extends:
- .test - .test
needs: needs:
- lint_be - build_be
######## ########
# COMPOSE-BUILD # COMPOSE-BUILD