diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e08fe88a80c34ce7f749f25fb9215ca893085e6d..972c8dbd0fbef7cbd1280d635dc10dcf346b2cb3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -75,7 +75,7 @@ install: #### #### ####################################################################################################################################### -lint: +lint-back: stage: test before_script: - source ./venv/bin/activate @@ -84,6 +84,16 @@ lint: - pycodestyle --config=./backend/setup.cnf ./backend +lint-front: + image: node:14.6.0 + stage: test + before_script: + - cd frontend/ + - npm install + script: + - npm run lint + + # test: # stage: test # variables: