fix figure subtitle #136
Workflow file for this run
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
| on: | |
| # Trigger the workflow on PR to the master branch | |
| pull_request: | |
| branches: | |
| - master | |
| name: Check page rendering | |
| jobs: | |
| render: | |
| name: Render Site | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| packages: rmarkdown, distill, dplyr, tidyr, jsonlite, DT, stringi | |
| - name: Render Site | |
| run: Rscript -e 'rmarkdown::render_site(encoding = "UTF-8")' |