diff --git a/.github/workflows/lint-readme.yml b/.github/workflows/lint-readme.yml index e2f3f9f..0519521 100644 --- a/.github/workflows/lint-readme.yml +++ b/.github/workflows/lint-readme.yml @@ -23,7 +23,7 @@ jobs: id: lint run: | set -o pipefail - node ./.github/scripts/lint-readme.js | tee gh-cli-readme-lint-results.txt + node ./.github/scripts/lint-readme.js | tee gh-cli-readme-lint-results.txt || true - name: Upload lint results if: steps.lint.outcome == 'failure' || steps.lint.outcome == 'success' @@ -46,7 +46,7 @@ jobs: id: lint run: | set -o pipefail - node ./.github/scripts/lint-readme.js ./scripts '##' '# scripts' | tee scripts-readme-lint-results.txt + node ./.github/scripts/lint-readme.js ./scripts '##' '# scripts' | tee scripts-readme-lint-results.txt || true - name: Upload lint results if: steps.lint.outcome == 'failure' || steps.lint.outcome == 'success'