diff options
author | Minteck <contact@minteck.org> | 2021-12-21 16:12:16 +0000 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2021-12-21 16:12:16 +0000 |
commit | a805652f0061840dff8664e37d84dd7a21a5fdae (patch) | |
tree | da30695c083f05004eb49f708c120a0de391d246 | |
parent | a46c150233076b81510afa7e2f717bbaca6432df (diff) | |
download | desktop-a805652f0061840dff8664e37d84dd7a21a5fdae.tar.gz desktop-a805652f0061840dff8664e37d84dd7a21a5fdae.tar.bz2 desktop-a805652f0061840dff8664e37d84dd7a21a5fdae.zip |
Add new file
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7adde58 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +# Generic Minteck GitLab CI/CD Checks +# NodeJS applications +image: node:current-buster + +before_script: + - apt-get update + - apt-get install -y git npm + +test: + script: + - npm install + - 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 $? |