Skip to content

Commit 0ea4f35

Browse files
authored
Split link checking into its own job (#1551)
1 parent ab65153 commit 0ea4f35

File tree

1 file changed

+23
-17
lines changed

1 file changed

+23
-17
lines changed

.github/workflows/ci.yml

+23-17
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,29 @@ jobs:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1717
steps:
1818
- uses: actions/checkout@v4
19+
- name: Lint
20+
uses: avto-dev/markdown-lint@v1
21+
with:
22+
args: '.'
23+
config: '.markdownlint.json'
24+
- name: Install Zola
25+
run: |
26+
curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
27+
echo "Zola version: $(./zola --version)"
28+
- name: Zola build
29+
run: ./zola build
30+
- name: Upload GitHub Pages artifact
31+
uses: actions/upload-pages-artifact@v3
1932
with:
20-
fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }}
33+
path: public
34+
35+
links:
36+
name: Check for Broken Links
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/checkout@v4
40+
with:
41+
fetch-depth: ${{ github.event_name == 'pull_request' && 2 || 0 }}
2142
- name: Get changed files
2243
id: changed-files
2344
# source: https://stackoverflow.com/a/74268200, added filtering for markdown files
@@ -29,11 +50,6 @@ jobs:
2950
fi
3051
echo "changed_files: $changed_files"
3152
echo "changed_files=$changed_files" >> $GITHUB_OUTPUT
32-
- name: Lint
33-
uses: avto-dev/markdown-lint@v1
34-
with:
35-
args: '.'
36-
config: '.markdownlint.json'
3753
- name: Check links
3854
uses: lycheeverse/[email protected]
3955
if: ${{ steps.changed-files.outputs.changed_files != '' }}
@@ -50,17 +66,7 @@ jobs:
5066
--exclude 'dev.epicgames.com'
5167
--exclude-path 'assets/logo/readme.md'
5268
${{ steps.changed-files.outputs.changed_files }}
53-
- name: Install Zola
54-
run: |
55-
curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
56-
echo "Zola version: $(./zola --version)"
57-
- name: Zola build
58-
run: ./zola build
59-
- name: Upload GitHub Pages artifact
60-
uses: actions/upload-pages-artifact@v3
61-
with:
62-
path: public
63-
69+
6470
pages:
6571
needs: zola
6672
permissions:

0 commit comments

Comments
 (0)