Allow the audit step to fail without failing the entire build

This commit is contained in:
Raoul Snyman 2023-05-01 22:22:27 -07:00
parent e068db00db
commit 2b9b985ba8
1 changed files with 3 additions and 2 deletions

View File

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