chore: update graphql dependency and use features #810
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
name: Check for broken links | |
on: | |
pull_request: | |
branches: | |
- main | |
- main-null-unsafe | |
# schedule: | |
# Run the quality job at 4am every day | |
# - cron: '0 4 * * *' | |
jobs: | |
link-check: | |
runs-on: ubuntu-latest | |
env: | |
LYCHEE_OUT: tmp/lychee_results.md | |
GITHUB_TOKEN: ${{ github.token }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Check links | |
id: check_links | |
uses: lycheeverse/[email protected] | |
with: | |
format: detailed | |
fail: true # Fail the action if the link check fails | |
args: > | |
--config .github/workflows/link_check_config.lychee.toml | |
**/*.md | |
**/*.yaml | |
**/*.dart | |
--github-token $GITHUB_TOKEN |