Skip to content

Commit 03aaa78

Browse files
committed
chore: fix bash syntax error in node integration
1 parent e722439 commit 03aaa78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/node-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ jobs:
489489
env: ${{ matrix.env }}
490490
run: |
491491
EXIT=1
492-
if [[ "${{ steps.command.outcome }}" == "success" || "${{ matrix.flaky }}" == "true" || "${{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly"]]; then
492+
if [[ "${{ steps.command.outcome }}" == "success" || "${{ matrix.flaky }}" == "true" || "${{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly" ]]; then
493493
EXIT=0
494494
fi
495495
exit $EXIT

scripts/template-oss/node-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ jobs:
487487
env: $\{{ matrix.env }}
488488
run: |
489489
EXIT=1
490-
if [[ "$\{{ steps.command.outcome }}" == "success" || "$\{{ matrix.flaky }}" == "true" || "$\{{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly"]]; then
490+
if [[ "$\{{ steps.command.outcome }}" == "success" || "$\{{ matrix.flaky }}" == "true" || "$\{{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly" ]]; then
491491
EXIT=0
492492
fi
493493
exit $EXIT

0 commit comments

Comments
 (0)