Skip to content

Commit

Permalink
Add two actions.
Browse files Browse the repository at this point in the history
Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>
  • Loading branch information
bgravenorst committed Aug 27, 2024
1 parent 760d51f commit f4418e5
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
workflow_dispatch: {}

jobs:
linkCheck:
name: Run link check
linkCheckMdx:
name: Run link check on MDX
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -19,7 +19,15 @@
with:
FILE_EXTENSION: mdx
MODIFIED_FILES_ONLY: no
continue-on-error: true
linkCheckMd:
needs: linkCheckMdx
name: Run link check on MD
if: always()
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: LinkCheck md files
uses: ConsenSys/docs-gha/linkcheck@main
with:
Expand Down

0 comments on commit f4418e5

Please sign in to comment.