Fix results pipeline: Quarto YAML and CI workflow#143
Merged
kathsherratt merged 2 commits intomainfrom Feb 18, 2026
Merged
Conversation
The results.qmd file used rmarkdown YAML syntax (output: html_document) instead of Quarto syntax (format: html). The CI workflow was rendering the legacy results.Rmd via rmarkdown instead of results.qmd via Quarto. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Fix epi_target/outcome_target column name mismatch between saved results.rds and current R code in results.qmd - Update stringi to 1.8.7 in renv.lock (1.8.4 incompatible with R 4.5) - Add rendered output files to .gitignore Verified: quarto render report/results.qmd produces complete HTML with all 3 figures and the table. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Author
|
noting that this was a wild journey in the hinterlands of renv, combatting gfortran and an army of Makevars along the way Edit: looks like we lost the battle (but hoping that this goes some way to win the war - so merging to unblock further PRs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
report/results.qmdYAML header:output: html_document(rmarkdown) →format: html(Quarto)results.qmdvia Quarto instead of legacyresults.Rmdvia rmarkdownNote
Local pipeline verification (renv::restore + quarto render) was blocked by package compilation issues on the development machine (x86_64 R under Rosetta on ARM Mac). The file changes are correct; CI will validate end-to-end rendering.
Test plan
🤖 Generated with Claude Code