We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d399c7b commit 5c21e7cCopy full SHA for 5c21e7c
.github/workflows/ci.yml
@@ -36,8 +36,11 @@ jobs:
36
run: |
37
npm install -g @umbrelladocs/linkspector
38
echo "linkspector version: $(linkspector --version)"
39
- echo "Files changed in this pr: ${{ steps.changed-files.outputs.changed_files }}"
40
- linkspector check ${{ steps.changed-files.outputs.changed_files }}
+ echo "files:" > .linkspector.yml
+ echo "${{ steps.changed-files.outputs.changed_files }}" | tr ' ' '\n' | while read -r file; do
41
+ echo " - $file" >> .linkspector.yml
42
+ done
43
+ linkspector --config .linkspector.yml check
44
- name: Install Zola
45
46
curl -L ${BASE_URL}/${VERS}/zola-${VERS}-${ARCH}.tar.gz | tar -xz
0 commit comments