Remove audit from CI jobs

This commit is contained in:
Joel Collins 2020-05-26 15:37:54 +01:00
parent 9e34cb495a
commit c055872cdb

View file

@ -1,5 +1,4 @@
stages:
- test
- build
- deploy
@ -11,21 +10,6 @@ cache:
- node_modules/
# Check for dependency vulnerabilities
audit:
stage: test
image: node:latest
script:
- npm audit --json> audit.json
allow_failure: true
artifacts:
paths:
- "./audit.json"
# Electron app build
build:
stage: build