The token is definitely being passed in, but for whatever reason isn't being found.
Ensure coverage has not dropped 📈4s
GITHUB_TOKEN: ***
Run DEBUG=check-code-coverage npx set-gh-status --check-against-readme
DEBUG=check-code-coverage npx set-gh-status --check-against-readme
shell: /bin/bash -e {0}
env:
GITHUB_TOKEN: ***
npx: installed 69 in 3.549s
Token must be provided!
##[error]Process completed with exit code 1.
It looks like this package assumes everything is at the root folder. After adding cd clients/html && to the npx line, it works, but then it's looking for the badge at the root-level README which doesn't have a badge.
The token is definitely being passed in, but for whatever reason isn't being found.
Ensure coverage has not dropped 📈4s GITHUB_TOKEN: *** Run DEBUG=check-code-coverage npx set-gh-status --check-against-readme DEBUG=check-code-coverage npx set-gh-status --check-against-readme shell: /bin/bash -e {0} env: GITHUB_TOKEN: *** npx: installed 69 in 3.549s Token must be provided! ##[error]Process completed with exit code 1.It looks like this package assumes everything is at the root folder. After adding
cd clients/html &&to the npx line, it works, but then it's looking for the badge at the root-levelREADMEwhich doesn't have a badge.