feat(methods): Documented stressless new option to specify the http method #402
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This action checks for broken links | |
name: Check Links | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "00 00 * * *" | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 🔗 Check Links | |
uses: lycheeverse/lychee-action@v1.6.1 | |
with: | |
fail: true | |
args: --config .github/workflows/lychee.toml './**/*.md' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |