mirror of
https://github.com/jlengrand/moderne-docs.git
synced 2026-03-10 08:31:21 +00:00
19 lines
339 B
YAML
19 lines
339 B
YAML
name: Check for broken references
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Find broken references
|
|
run: |
|
|
if grep -r --exclude-dir=.github "broken-reference" . ; then
|
|
exit 1
|
|
fi
|