Skip to content

fix test so they can run on the installed package #105

fix test so they can run on the installed package

fix test so they can run on the installed package #105

Workflow file for this run

---
name: Pkgdown 📖
on:
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- main
push:
branches:
- main
workflow_call:
concurrency:
group: pkgdown-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
pkgdown:
name: ${{ vars.CI_IMAGE }}
runs-on: ubuntu-latest
container:
image: ${{ vars.CI_IMAGE }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout project ⬇️
uses: actions/checkout@v4
- name: Install package dependencies 📄
uses: boehringer-ingelheim/dv.templates/.github/actions/dependencies@main
- name: Get validation results
uses: actions/download-artifact@v4
with:
name: val_results
path: inst/validation/results
- name: Build site 🔧
run: pkgdown::build_site()
shell: Rscript {0}
- name: Check URLs 🌐
run: |
lychee . --format markdown --verbose --no-progress >> $GITHUB_STEP_SUMMARY
shell: bash
- name: Checkout gh-pages branch ⬇️
if: github.ref_name == 'main'
uses: actions/checkout@v4
with:
path: gh-pages
ref: gh-pages
- name: Deploy to GitHub pages 📰
if: github.ref_name == 'main'
uses: JamesIves/[email protected]
with:
clean: true
branch: gh-pages
folder: docs