We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 949a567 commit 3d1dee0Copy full SHA for 3d1dee0
1 file changed
.github/workflows/unit-tests-internal.yml
@@ -121,10 +121,10 @@ jobs:
121
pnpm exec turbo run test --only --concurrency=1 --filter "@internal/*" -- \
122
--run --reporter=default --reporter=blob --shard="$i/$SHARD_TOTAL" --passWithNoTests \
123
> "/tmp/internal-shard-$i.log" 2>&1 &
124
- pids[$i]=$!
+ pids[i]=$!
125
done
126
for i in $(seq 1 "$SHARD_TOTAL"); do
127
- if ! wait "${pids[$i]}"; then
+ if ! wait "${pids[i]}"; then
128
status=1
129
echo "::error::internal unit test shard $i/$SHARD_TOTAL failed"
130
fi
0 commit comments