mirror of
https://github.com/modernweb-dev/check-html-links-action.git
synced 2026-03-10 08:51:19 +00:00
7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/sh -l
|
|
|
|
WORKDIR=$GITHUB_WORKSPACE/$1
|
|
echo "Checking links in $WORKDIR"
|
|
|
|
npx check-html-links $WORKDIR
|