aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/ci.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci.sh')
-rwxr-xr-xscripts/ci.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index dd4c28356..9399a0f59 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -27,7 +27,7 @@ runTest () {
27 27
28 joblog="$jobname-ci.log" 28 joblog="$jobname-ci.log"
29 29
30 parallel -j $jobs \ 30 parallel -j $jobs --retries $retries \
31 "echo Trying {} >> $joblog; npm run mocha -- -c --timeout 30000 --exit --require ts-node/register --require tsconfig-paths/register --bail {}" \ 31 "echo Trying {} >> $joblog; npm run mocha -- -c --timeout 30000 --exit --require ts-node/register --require tsconfig-paths/register --bail {}" \
32 ::: $files 32 ::: $files
33 33
@@ -40,7 +40,7 @@ findTestFiles () {
40} 40}
41 41
42if [ "$1" = "misc" ]; then 42if [ "$1" = "misc" ]; then
43 npm run build -- --light 43 npm run build
44 44
45 feedsFiles=$(findTestFiles server/tests/feeds) 45 feedsFiles=$(findTestFiles server/tests/feeds)
46 helperFiles=$(findTestFiles server/tests/helpers) 46 helperFiles=$(findTestFiles server/tests/helpers)