diff --git a/.github/workflows/linkspector.yml b/.github/workflows/linkspector.yml new file mode 100644 index 000000000..4ff35e8e3 --- /dev/null +++ b/.github/workflows/linkspector.yml @@ -0,0 +1,14 @@ +name: Linkspector +on: [pull_request] +jobs: + check-links: + name: runner / linkspector + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run linkspector + uses: umbrelladocs/action-linkspector@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-pr-review + fail_on_error: true \ No newline at end of file diff --git a/.linkspector.yml b/.linkspector.yml new file mode 100644 index 000000000..511f8020a --- /dev/null +++ b/.linkspector.yml @@ -0,0 +1,7 @@ +dirs: + - . + +excludedDirs: + - bolt-contracts/lib + +useGitIgnore: true \ No newline at end of file