Skip to content

Commit 5287d1b

Browse files
committed
depbot added en html validatie optioneel gemaakt
1 parent fac64be commit 5287d1b

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Set update schedule for GitHub Actions
2+
3+
version: 2
4+
updates:
5+
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
11+
- package-ecosystem: "gomod"
12+
directory: "/"
13+
schedule:
14+
interval: "daily"

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,12 @@ jobs:
2020

2121
- name: Validate HTML
2222
run: |
23-
set +e
2423
docker run --rm -v "$PWD:/site" ghcr.io/validator/validator:latest \
2524
java -jar /vnu.jar --errors-only --skip-non-html --format json /site/snapshot.html \
2625
> $CHECK_DIR/html-validation.json
2726
status=$?
28-
set -e
2927
30-
echo "HTML validator output (pretty JSON):"
28+
echo "HTML validator output:"
3129
jq '.' $CHECK_DIR/html-validation.json | tee $CHECK_DIR/html-validation.pretty.json
3230
3331
jq -r '

0 commit comments

Comments
 (0)