docs: remove unnecessary hyphens in CircleCI's sharding example

This commit is contained in:
Atsushi Kawamura (atzz/a2c) 2025-02-04 23:06:01 +09:00 committed by atzzCokeK
parent 5d82567346
commit 8eb415a426

View file

@ -804,7 +804,7 @@ Sharding in CircleCI is indexed with 0 which means that you will need to overrid
executor: pw-noble-development executor: pw-noble-development
parallelism: 4 parallelism: 4
steps: steps:
- run: SHARD="$((${CIRCLE_NODE_INDEX}+1))"; npx playwright test -- --shard=${SHARD}/${CIRCLE_NODE_TOTAL} - run: SHARD="$((${CIRCLE_NODE_INDEX}+1))"; npx playwright test --shard=${SHARD}/${CIRCLE_NODE_TOTAL}
``` ```
### Jenkins ### Jenkins