mirror of
https://github.com/nick-fields/retry.git
synced 2025-12-29 03:09:37 +08:00
* minor: use spawn to stream larger output rather than exec which buffers it * test: verify distinct error code is returned from large output test * test: breakout additional integration tests to run in parallel * test: dont pass/fail PRs for coverage yet
12 lines
281 B
Bash
12 lines
281 B
Bash
# these are the bare minimum envvars required
|
|
INPUT_TIMEOUT_MINUTES=1
|
|
INPUT_MAX_ATTEMPTS=3
|
|
INPUT_COMMAND="node -e 'process.exit(99)'"
|
|
INPUT_CONTINUE_ON_ERROR=false
|
|
|
|
# these are optional
|
|
#INPUT_RETRY_WAIT_SECONDS=10
|
|
#SHELL=pwsh
|
|
#INPUT_POLLING_INTERVAL_SECONDS=1
|
|
#INPUT_RETRY_ON=any
|