Skip to content

Commit 8ee4d09

Browse files
committed
always check chromium before rendering
1 parent 99467f0 commit 8ee4d09

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

render/action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ inputs:
1212
runs:
1313
using: 'composite'
1414
steps:
15+
# The Check Chromium step appears necessary to avoid a crash/hang when rendering PDFs
16+
# https://github.com/quarto-dev/quarto-actions/issues/45#issuecomment-1562599451
17+
#
18+
# chromium is installed in the ubuntu 21 runners in GHA, so no need to install it
19+
- name: 'Check Chromium'
20+
run: |
21+
echo $(which chromium-browser)
22+
$(which chromium-browser) --headless https://www.chromestatus.com
1523
- name: 'Render'
1624
env:
1725
QUARTO_PRINT_STACK: true

0 commit comments

Comments
 (0)