mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-12 12:47:45 +02:00
@@ -36,8 +36,9 @@ jobs:
|
||||
- name: Installing...
|
||||
run: node common/scripts/install-run-rush.js install
|
||||
|
||||
- name: Checking svelte sources...
|
||||
run: common/scripts/each.sh svelte-check
|
||||
|
||||
- name: Building...
|
||||
run: node common/scripts/install-run-rush.js rebuild --verbose
|
||||
|
||||
- name: Checking svelte sources...
|
||||
run: common/scripts/each.sh svelte-check
|
||||
|
||||
@@ -24,13 +24,13 @@ roots=$(node $sourceDir/install-run-rush.js list -f --json | grep "fullPath" | c
|
||||
for i in $roots
|
||||
do
|
||||
pushd ${i}
|
||||
|
||||
node ${runScript} $@
|
||||
|
||||
retVal=$?
|
||||
if [ $retVal -ne 0 ]; then
|
||||
echo "Error"
|
||||
exit $retVal
|
||||
if [ $(node ${runscript} | grep $1: | wc -l) > 0 ]; then
|
||||
node ${runScript} $@
|
||||
retVal=$?
|
||||
if [ $retVal -ne 0 ]; then
|
||||
echo "Error"
|
||||
exit $retVal
|
||||
fi
|
||||
fi
|
||||
popd
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user