Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,23 @@ jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check out the code
uses: actions/checkout@v4

- name: Build Jekyll site
uses: helaili/jekyll-action@v2
- name: Fetch main
run: |
git fetch origin main --depth 1
git branch

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
build_only: true
build_dir: _site
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Build with Jekyll
run: bundle exec jekyll build
env:
JEKYLL_ENV: production

- name: Link Checker
id: lychee
Expand Down