🐛 Dead links analyzer

This commit is contained in:
Frederik Hjorslev Poulsen 2020-04-04 22:10:45 +02:00
parent 99f3fdbe4b
commit 3cfa9b3be6
No known key found for this signature in database
GPG Key ID: 23DDBC920BDE66CF
2 changed files with 6 additions and 6 deletions

View File

@ -15,8 +15,7 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
analyze-readme:
# The type of runner that the job will run on
runs-on: ubuntu-latest
@ -25,7 +24,9 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: pester tests
- name: Analyze Links
shell: pwsh
run: |
./DeadLinksAnalyzer.ps1
./DeadLinksAnalyzer.ps1
$deadlinks = Test-MarkdownLinks -Path ".\readme.md"
continue-on-error: true

View File

@ -23,5 +23,4 @@
}
# Output urls
return $unreachable
}
$deadlinks = Test-MarkdownLinks -Path ".\readme.md"
}