Skip to content

Commit 3d1dee0

Browse files
committed
fix actionlint error
1 parent 949a567 commit 3d1dee0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/unit-tests-internal.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ jobs:
121121
pnpm exec turbo run test --only --concurrency=1 --filter "@internal/*" -- \
122122
--run --reporter=default --reporter=blob --shard="$i/$SHARD_TOTAL" --passWithNoTests \
123123
> "/tmp/internal-shard-$i.log" 2>&1 &
124-
pids[$i]=$!
124+
pids[i]=$!
125125
done
126126
for i in $(seq 1 "$SHARD_TOTAL"); do
127-
if ! wait "${pids[$i]}"; then
127+
if ! wait "${pids[i]}"; then
128128
status=1
129129
echo "::error::internal unit test shard $i/$SHARD_TOTAL failed"
130130
fi

0 commit comments

Comments
 (0)