diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 989b72c..ec4e6d3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,11 +1,20 @@ image: openlp/angular stages: + - audit - test - build - deploy -lint: +audit: + stage: audit + script: + - yarn install + - yarn audit + except: + - tags + +lint: stage: test script: - yarn install