Skip to content

Commit

Permalink
revert CI simplificaiton
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones-plip committed Dec 20, 2024
1 parent 07d171d commit d4002eb
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/cron-check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name: Test site for broken links
jobs:
BuildLinkCheckPushLive:
name:
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:

Expand All @@ -27,6 +27,18 @@ jobs:
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- name: Install asdf & tools in .tool-versions
uses: asdf-vm/actions/install@v2

- name: Install npm modules for Hugo
run: npm install

# run in background so CI doesn't hang waiting for "ctrl + c". Sleep ensures server is ready in next step
- name: Serve Hugo site
run: |
hugo server&
sleep 30
- name: Run Muffet link checker
shell: bash
run: |
Expand Down

0 comments on commit d4002eb

Please sign in to comment.