We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08cd190 commit b92787fCopy full SHA for b92787f
.github/.linkspector.json
@@ -0,0 +1,8 @@
1
+{
2
+ "aliveStatusCodes": [
3
+ 200,
4
+ 201,
5
+ 204,
6
+ 302
7
+ ]
8
+}
.github/workflows/ci.yml
@@ -37,7 +37,7 @@ jobs:
37
npm install -g @umbrelladocs/linkspector
38
echo "linkspector version: $(linkspector --version)"
39
echo "changed files: ${{ steps.changed-files.outputs.changed_files }}"
40
- jq '{"files": $ARGS.positional}' --null-input --args ${{ steps.changed-files.outputs.changed_files }} > .linkspector.yml
+ cat .github/.linkspector.json | jq '.files=$ARGS.positional' ${{ steps.changed-files.outputs.changed_files }} > .linkspector.yml
41
linkspector check --config .linkspector.yml
42
- name: Install Zola
43
run: |
0 commit comments