Merge branch 'allow-audit-failures' into 'master'

Allow the audit step to fail without failing the entire build

See merge request openlp/web-remote!66
This commit is contained in:
Raoul Snyman 2023-05-02 06:03:53 +00:00
commit a78f485a1d

View File

@ -9,9 +9,10 @@ audit:
stage: test stage: test
script: script:
- yarn install - yarn install
- yarn audit || true - yarn audit
except: except:
- tags - tags
allow_failure: true
lint: lint:
stage: test stage: test