We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25f9b19 commit d741d52Copy full SHA for d741d52
.github/workflows/ci.yml
@@ -39,6 +39,13 @@ jobs:
39
- name: Test
40
run: npm test
41
42
+ - name: Upload test logging
43
+ if: github.repository == 'tldr-pages/tldr' && github.event.pull_request.number != ''
44
+ uses: actions/upload-artifact@v4
45
+ with:
46
+ name: debug.log
47
+ path: debug.log
48
+
49
- name: Build
50
run: bash scripts/build.sh
51
scripts/test.sh
@@ -121,7 +121,7 @@ function run_tests_pr {
121
# Additional checks for GitHub Actions pull request builds.
122
# Only taken as suggestions, does not make the build fail.
123
function run_checks_pr {
124
- msgs=$(bash scripts/check-pr.sh)
+ msgs=$(bash scripts/check-pr.sh -v)
125
126
if [[ -n $msgs ]]; then
127
echo -e "\nCheck PR reported the following message(s):\n$msgs\n" >&2
0 commit comments