Update .gitlab-ci.yml file: add audit stage.

This commit is contained in:
Chris Witterholt 2023-04-28 18:13:53 +00:00
parent 555519faac
commit 4c1f4fb2e3
1 changed files with 10 additions and 1 deletions

View File

@ -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