We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 218f20c commit 2d52cf2Copy full SHA for 2d52cf2
.github/workflows/pull_request.yml
@@ -162,6 +162,8 @@ jobs:
162
git fetch --all
163
git checkout $branch_name
164
git merge -s recursive --strategy-option=theirs origin/${{ github.head_ref }} --allow-unrelated-histories
165
+ quarto --version
166
+ quarto check
167
shell: bash
168
169
# Run bookdown rendering
@@ -175,8 +177,9 @@ jobs:
175
177
id: quarto
176
178
if: ${{needs.yaml-check.outputs.toggle_website == 'quarto' }}
179
run: |
- echo ${{needs.yaml-check.outputs.rendering_docker_image}}
- Rscript -e "quarto::quarto_render('.')"
180
181
+ quarto::quarto_render('.')
182
+ shell: Rscript
183
184
# This checks on the steps before it and makes sure that they completed.
185
# If the renders didn't complete we don't want to commit the file changes
0 commit comments