diff options
author | Minteck <contact@minteck.org> | 2021-12-04 19:53:38 +0100 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-04 19:53:38 +0100 |
commit | 985e9ad2a83b02990b9e291e64401d181a8c9534 (patch) | |
tree | 2ebd7fe147e793b910d323258da80c9cf22ec0d6 /.gitlab-ci.yml | |
parent | cb7906915cc98b6c76fefaae6bd32fee53bbde51 (diff) | |
parent | 7c6d539a2651be68a539c068c21cd467c9675f7d (diff) | |
download | rainbow-985e9ad2a83b02990b9e291e64401d181a8c9534.tar.gz rainbow-985e9ad2a83b02990b9e291e64401d181a8c9534.tar.bz2 rainbow-985e9ad2a83b02990b9e291e64401d181a8c9534.zip |
Merge branch 'trunk' of https://gitlab.minteck.org/minteck/sattelite into trunk
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e0b8de..7adde58 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,5 @@ +# Generic Minteck GitLab CI/CD Checks +# NodeJS applications image: node:current-buster before_script: @@ -7,6 +9,6 @@ before_script: test: script: - npm install - - rm failed.log + - rm -Rfvd failed.log - bash -c "rm failed.log; rm -f failed.log; find . -path ./node_modules -prune -o -name "*.js" \( -exec node -c {} \; -o -exec echo {} > failed.log \; \); echo $([ ! -s failed.log ]; echo $?); exit $([ ! -s failed.log ]; echo $?)"; echo $? - bash -c "rm failed.log; rm -f failed.log; find . -path ./node_modules -prune -o -name "*.js" \( -exec node -c {} \; -o -exec echo {} > failed.log \; \); echo $([ ! -s failed.log ]; echo $?); exit $([ ! -s failed.log ]; echo $?)"; echo $? |