mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-22 13:15:49 +00:00
Fix ci.sh error detection
This commit is contained in:
@@ -52,15 +52,15 @@ oneNode() {
|
|||||||
|
|
||||||
twoNodes() {
|
twoNodes() {
|
||||||
case "$NODE_INDEX" in
|
case "$NODE_INDEX" in
|
||||||
0) doctest && lint && integrationtest;;
|
0) doctest; lint; integrationtest;;
|
||||||
1) typecheck && unittest;;
|
1) typecheck; unittest;;
|
||||||
*) echo "ERROR: invalid usage"; exit 2;;
|
*) echo "ERROR: invalid usage"; exit 2;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
threeNodes() {
|
threeNodes() {
|
||||||
case "$NODE_INDEX" in
|
case "$NODE_INDEX" in
|
||||||
0) doctest && lint && integrationtest;;
|
0) doctest; lint; integrationtest;;
|
||||||
1) typecheck;;
|
1) typecheck;;
|
||||||
2) unittest;;
|
2) unittest;;
|
||||||
*) echo "ERROR: invalid usage"; exit 2;;
|
*) echo "ERROR: invalid usage"; exit 2;;
|
||||||
|
|||||||
Reference in New Issue
Block a user