From 2b9b985ba8a60b35e50f716de428576ef8430152 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Mon, 1 May 2023 22:22:27 -0700 Subject: [PATCH] Allow the audit step to fail without failing the entire build --- .gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 284b61e..6f384d3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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